/* Authentication Pages (Login/Signup) Styles - Light Theme */
body {
    background-color: #f8fafc;
    /* Slate 50 */
    font-family: 'Outfit', sans-serif;
    /* Soft light gradient */
    background-image:
        radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(224, 123, 0, 0.10) 0px, transparent 50%);
    background-attachment: fixed;
    color: #1e293b;
    /* Slate 800 */
}

/* Override navbar to be transparent on these pages */
.navbar-custom {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
}

/* Form controls for Login/Signup */
.form-control {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #1e293b !important;
    font-weight: 500;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:focus {
    background-color: #ffffff !important;
    border-color: #D97706 !important;
    /* Amber 600 */
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.2) !important;
}

.form-label {
    color: #475569;
    /* Slate 600 */
    font-weight: 600;
    letter-spacing: 0.02em;
}

.text-muted {
    color: #64748b !important;
    /* Slate 500 */
}

h3 {
    color: #1e293b;
    font-weight: 700;
}

.form-section-title {
    color: #D97706;
    /* Amber 600 */
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    font-size: 1.2rem;
}

/* Fix hamburger icon: layout.html inlines filter:invert(1) for dark navbars,
   but auth pages have a light background so the icon turns invisible. */
.navbar-toggler-icon {
    filter: invert(0) !important;
}

/* ── Password toggle button ──────────────────────────────────── */
.password-wrapper {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0 4px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    z-index: 5;
}

.password-toggle-btn:hover { color: #475569; }
.password-toggle-btn:focus { outline: none; box-shadow: none; }