/* ===========================
   Auth Header
=========================== */
.auth-header {
    background: transparent;
    padding: 5rem 0;
    position: relative;
    text-align: center;
}

.auth-overlay {
    background: radial-gradient(circle at top left, rgba(151, 113, 67, 0.08), transparent 70%),
        linear-gradient(to bottom right, rgba(151, 113, 67, 0.05), rgba(255, 255, 255, 0.7));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Headline text with glowing outline */
.text-outline {
    color: #977143;
    text-shadow:
        2px 2px 6px rgba(0, 0, 0, 0.9),
        -2px -2px 6px rgba(255, 255, 255, 0.2);
}

/* Divider line (glass effect) */
.divider-glass {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    border-radius: 2px;
    margin: 1rem auto;
}

/* Fade-in animation */
.fade-in-up {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Auth Card
=========================== */
.auth-card {
    background: #ffffff;
    border: 2px solid #977143;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 6px 22px rgba(151, 113, 67, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(151, 113, 67, 0.4);
}

/* Input fields */
.auth-card input,
.auth-card select,
.auth-card textarea {
    background: #fafafa !important;
    border: 1px solid rgba(151, 113, 67, 0.3) !important;
    color: #333333 !important;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.auth-card input::placeholder,
.auth-card textarea::placeholder {
    color: #999999 !important;
    opacity: 0.8;
}

.auth-card input:focus,
.auth-card select:focus,
.auth-card textarea:focus {
    background: #ffffff !important;
    border-color: #977143 !important;
    box-shadow: 0 0 12px rgba(151, 113, 67, 0.3);
    outline: none;
}

/* Form labels */
.auth-card label {
    color: #333333 !important;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

/* Helper text / hints */
.auth-card small,
.auth-card .form-text {
    color: #666666 !important;
    opacity: 0.9;
}

/* ===========================
   Buttons
=========================== */
.btn-auth {
    background-color: #977143;
    color: #ffffff;
    border: 2px solid #977143;
    border-radius: 35px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.btn-auth:hover {
    background-color: #b8854d;
    color: #ffffff;
    border: 2px solid #b8854d;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(151, 113, 67, 0.5);
}

/* Secondary button */
.btn-auth-secondary {
    background-color: #ffffff;
    color: #977143;
    border: 2px solid #977143;
    border-radius: 35px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.btn-auth-secondary:hover {
    background-color: #977143;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(151, 113, 67, 0.5);
}

/* Disabled button */
.btn-auth:disabled,
.btn-auth-secondary:disabled {
    background-color: #e0e0e0;
    color: #999999;
    border-color: #cccccc;
}

/* ===========================
   Links (Forgot password, Register, etc.)
=========================== */
.auth-link {
    color: #977143;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #b8854d;
    text-decoration: underline;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
    .auth-card {
        padding: 1.5rem;
    }
}