:root {
    --color-primary: #8D3A08;
    --color-light: #D4B05A;
    --color-dark: #3A2615;
    --color-medium: #C28B42;
    --color-border: #8D3A08;
    --color-tab: #FBF5E5;
    --color-label: #3A2615;
    --color-button: #8D3A08;
    --color-blue: #007497;
    --soft-card: #F4E6C3;
    --muted-text: rgba(58, 38, 21, 0.55);
    --glass-bg: rgba(80, 48, 18, 0.05);
    --radius: 12px;
    --shadow: 0 8px 26px rgba(50, 30, 10, 0.07);
    --ease: cubic-bezier(.2, .9, .3, 1);
    --card-gap: 10px;
}
* {
  font-family: "Calibri Light", Calibri, sans-serif;
}



body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f6fa;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.form h2 {
    margin-bottom: 1.3rem;
    color: var(--color-blue);
    text-align: center;
}

.form input[type="email"] {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #dcdde1;
    font-size: 1rem;
    outline: none;
    transition: border 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.form input.error {
    border-color: #e84118 !important;
    box-shadow: 0 0 0 3px rgba(232, 65, 24, 0.06);
}

.form input:focus {
    border-color: #F3681E;
}

.form button {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--color-dark);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
}

.form a {
    display: block;
    text-align: center;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #F3681E;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 450px) {
    .form-container {
        padding: 1.2rem;
    }
}