/* ==========================================================================
   AUTH MODULE — Material Design 3 Premium Stylesheet
   Government Udyog Theme · Light-only · Mobile-first
   ========================================================================== */

/* --- Auth Layout Container --- */
.auth-screen {
    display: flex;
    flex-direction: column;
    min-height: calc(var(--vh, 1vh) * 100);
    background: var(--body-gradient, var(--surface));
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.auth-screen::-webkit-scrollbar {
    display: none;
}

/* ==========================================================================
   AUTH NAVBAR — Compact 56px with tricolor strip
   ========================================================================== */
.auth-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 var(--space-12);
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

/* National Tricolor Strip */
.auth-tricolor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    display: flex;
    z-index: 100;
}

.auth-tricolor-saffron { flex: 1; background: #FF671F; }
.auth-tricolor-white   { flex: 1; background: #FFFFFF; }
.auth-tricolor-green   { flex: 1; background: #046A38; }

/* Navbar Sections */
.auth-nav-left,
.auth-nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex: 0 0 auto;
    min-width: 44px;
}

.auth-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex: 1;
}

/* Back Button */
.auth-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--motion-fast);
}

.auth-back-btn:hover {
    background: rgba(10, 37, 64, 0.06);
}

.auth-back-btn:active {
    background: rgba(10, 37, 64, 0.12);
}

.auth-back-btn .material-symbols-rounded {
    font-size: 22px;
}

/* Navbar Brand */
.auth-nav-emblem {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-1);
    border: 2px solid var(--saffron);
    flex-shrink: 0;
}

.auth-nav-emblem-inner {
    width: 24px;
    height: 24px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-nav-emblem-inner .material-symbols-rounded {
    font-size: 13px;
    color: #FFFBEB;
}

.auth-nav-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
}

/* Help Button */
.auth-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--saffron);
    background: var(--saffron-light);
    color: var(--saffron);
    cursor: pointer;
    transition: all var(--motion-fast);
}

.auth-help-btn:hover {
    border-color: var(--saffron-dark);
    color: var(--saffron-dark);
    background: rgba(225, 29, 72, 0.15);
}

.auth-help-btn .material-symbols-rounded {
    font-size: 20px;
}

/* Language Toggle (Navbar) */
.auth-lang-toggle {
    display: flex;
    gap: 2px;
    background: var(--surface);
    border-radius: var(--radius-full);
    padding: 2px;
    border: 1px solid var(--border);
}

.auth-lang-btn {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--muted);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--motion-fast);
    font-family: var(--font-primary);
    line-height: 1.2;
}

.auth-lang-btn.active {
    background: var(--navy);
    color: #FFFBEB;
    box-shadow: 0 1px 3px rgba(10, 37, 64, 0.2);
}

/* ==========================================================================
   AUTH BODY — Scrollable content area
   ========================================================================== */
.auth-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-16) var(--space-16) var(--space-8);
    gap: var(--space-12);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ==========================================================================
   AUTH HERO — Login branding section
   ========================================================================== */
.auth-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-24) 0 var(--space-8);
    gap: var(--space-8);
}

.auth-hero-emblem {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-3);
    border: 3px solid var(--saffron);
    animation: auth-emblem-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.auth-hero-emblem-inner {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-hero-emblem-inner .material-symbols-rounded {
    font-size: 28px;
    color: #FFFBEB;
}

.auth-hero-title {
    font-size: 34px;
    font-weight: 800;
    color: transparent;
    font-family: var(--font-secondary);
    margin: 0;
    animation: auth-fade-up 0.5s 0.15s both;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.auth-hero-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-8);
    box-shadow: var(--elevation-2);
    animation: auth-emblem-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.auth-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #FFFBEB;
    background: var(--green);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: none;
    letter-spacing: normal;
    box-shadow: var(--elevation-1);
    animation: auth-fade-up 0.5s 0.25s both;
}

/* ==========================================================================
   AUTH SECTION HEADER — Page title bar
   ========================================================================== */
.auth-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    color: var(--navy);
    padding: var(--space-4) 0;
}

.auth-section-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--saffron-light);
    flex-shrink: 0;
}

.auth-section-icon .material-symbols-rounded {
    font-size: 20px;
    color: var(--saffron);
}

.auth-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin: 0;
    white-space: nowrap;
}

/* ==========================================================================
   AUTH CARD — Material 3 Surface
   ========================================================================== */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-24);
    box-shadow: var(--elevation-3);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
    animation: auth-card-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--elevation-4);
}

.auth-card--accent {
    border-top: 3px solid var(--saffron);
}

.auth-card-title {
    font-size: var(--heading-md);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: var(--space-20);
    font-family: var(--font-secondary);
}

/* Secure label inside card */
.auth-secure-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-8) var(--space-12);
    margin-bottom: var(--space-20);
    border-radius: var(--radius-md);
}

.auth-secure-label .material-symbols-rounded {
    font-size: 18px;
    color: var(--brand-primary);
}

.auth-secure-label span:last-child {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-secondary);
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ==========================================================================
   AUTH ICON SECTION — For OTP, Create PIN, etc.
   ========================================================================== */
.auth-icon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-12) 0 var(--space-16);
    gap: var(--space-12);
}

.auth-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-3);
    animation: auth-emblem-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.auth-icon-circle--saffron { background: var(--grad-card1); }
.auth-icon-circle--navy    { background: var(--grad-card2); }
.auth-icon-circle--green   { background: var(--grad-card3); }

.auth-icon-circle .material-symbols-rounded {
    font-size: 36px;
    color: #fff;
}

.auth-icon-desc {
    font-size: var(--body-md);
    color: var(--ink-soft);
    line-height: 1.5;
    padding: 0 var(--space-12);
    margin: 0;
}

.auth-icon-number {
    font-size: var(--heading-md);
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

/* ==========================================================================
   AUTH FORM ENHANCEMENTS
   ========================================================================== */
.auth-form-group {
    margin-bottom: var(--space-16);
}

.auth-form-group:last-child {
    margin-bottom: 0;
}

/* Forgot PIN Link */
.auth-forgot-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--body-md);
    font-weight: 600;
    color: var(--saffron);
    text-decoration: none;
    transition: color var(--motion-fast);
}

.auth-forgot-link:hover {
    color: var(--saffron-dark);
}

.auth-forgot-link .material-symbols-rounded {
    font-size: 18px;
}

.auth-forgot-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--space-16);
}

/* ==========================================================================
   AUTH BUTTONS
   ========================================================================== */
.auth-btn-primary {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    border: none;
    border-radius: var(--radius-full);
    background: var(--grad-hero);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--motion-fast);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 103, 31, 0.3);
    text-decoration: none;
}

.auth-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 103, 31, 0.35);
}

.auth-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(255, 103, 31, 0.2);
}

.auth-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Shimmer sweep on primary button */
.auth-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.auth-btn-primary:hover::after {
    left: 100%;
}

.auth-btn-secondary {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: var(--radius-full);
    background: var(--saffron-light);
    color: var(--brand-primary);
    font-size: var(--body-md);
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--motion-fast);
}

.auth-btn-secondary:hover {
    border-color: rgba(225, 29, 72, 0.3);
    background: #FFF1F2;
}

.auth-btn-secondary .material-symbols-rounded {
    font-size: 20px;
    color: var(--brand-primary);
}

/* ==========================================================================
   AUTH DIVIDER
   ========================================================================== */
.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    margin: var(--space-4) 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    font-size: var(--caption);
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   AUTH STEP PROGRESS — Material 3 Linear Indicator
   ========================================================================== */
.auth-steps {
    margin-bottom: var(--space-16);
}

.auth-step-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-12);
}

.auth-step-fill {
    height: 100%;
    background: var(--grad-hero);
    border-radius: var(--radius-full);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-step-labels {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
}

.auth-step-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--caption);
    font-weight: 600;
    color: var(--muted);
    transition: color var(--motion-fast);
}

.auth-step-label.active {
    color: var(--saffron);
}

.auth-step-label.done {
    color: var(--green);
}

.auth-step-label .material-symbols-rounded {
    font-size: 14px;
}

/* ==========================================================================
   AUTH OTP BYPASS BANNER
   ========================================================================== */
.auth-bypass-banner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-8);
    padding: var(--space-12);
    background: var(--gold-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(217, 119, 6, 0.2);
    margin-bottom: var(--space-12);
}

.auth-bypass-banner .material-symbols-rounded {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.auth-bypass-banner p {
    font-size: var(--caption);
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   AUTH PIN RULES LIST
   ========================================================================== */
.auth-pin-rules {
    list-style: none;
    padding: 0;
    margin: var(--space-12) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.auth-pin-rule {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--body-md);
    color: var(--text-secondary);
    transition: color var(--motion-fast);
}

.auth-pin-rule .material-symbols-rounded {
    font-size: 18px;
    color: var(--text-muted);
    transition: color var(--motion-fast);
}

.auth-pin-rule.passed {
    color: var(--green);
}

.auth-pin-rule.passed .material-symbols-rounded {
    color: var(--green);
}

/* Strength Meter */
.auth-strength-meter {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.auth-strength-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.auth-strength-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.3s ease, background 0.3s ease;
    width: 0%;
}

.auth-strength-text {
    font-size: var(--caption);
    font-weight: 600;
    white-space: nowrap;
}

/* ==========================================================================
   AUTH FOOTER — Government Initiative Badges
   ========================================================================== */
.auth-footer {
    margin-top: auto;
    padding: var(--space-16) var(--space-16) var(--space-12);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.auth-footer-support {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-16);
}

.auth-support-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(10, 37, 64, 0.04);
    color: var(--navy);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: var(--radius-full);
    font-size: var(--caption);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--motion-fast);
}

.auth-support-chip:hover {
    background: rgba(10, 37, 64, 0.08);
    border-color: rgba(10, 37, 64, 0.15);
}

.auth-support-chip .material-symbols-rounded {
    font-size: 18px;
}

.auth-footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 0 auto var(--space-12);
    width: 85%;
}

.auth-initiative-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.auth-initiative {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.auth-initiative svg {
    width: 24px;
    height: 24px;
}

.auth-initiative-label {
    font-size: 7px;
    font-weight: 700;
    color: var(--ink-soft);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-powered-by {
    font-size: 9px;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-4);
}

.auth-powered-by .material-symbols-rounded {
    font-size: 11px;
    color: var(--saffron);
}

.auth-powered-by strong {
    color: var(--navy);
}

/* ==========================================================================
   FEEDBACK MODAL — Centered with fixed header/footer
   ========================================================================== */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 340px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    transform: scale(0.92) translateY(8px);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
}

.auth-modal-overlay.active .auth-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Fixed Header */
.auth-modal-header {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    padding: var(--space-20) var(--space-20) var(--space-12);
    flex-shrink: 0;
}

.auth-modal-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-modal-icon--success {
    background: var(--green-light);
}

.auth-modal-icon--success .material-symbols-rounded {
    color: var(--green);
    font-size: 24px;
}

.auth-modal-icon--error {
    background: var(--error-light);
}

.auth-modal-icon--error .material-symbols-rounded {
    color: var(--error);
    font-size: 24px;
}

.auth-modal-icon--info {
    background: var(--navy-light);
}

.auth-modal-icon--info .material-symbols-rounded {
    color: var(--navy);
    font-size: 24px;
}

.auth-modal-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

/* Scrollable Body */
.auth-modal-body {
    padding: 0 var(--space-20);
    overflow-y: auto;
    flex: 1;
}

.auth-modal-message {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

/* Fixed Footer */
.auth-modal-footer {
    padding: var(--space-16) var(--space-20) var(--space-20);
    flex-shrink: 0;
}

.auth-modal-footer .auth-btn-primary {
    height: 42px;
    font-size: 13px;
}

/* ==========================================================================
   HELP MODAL
   ========================================================================== */
.auth-help-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.auth-help-item {
    padding: var(--space-12);
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.auth-help-item h4 {
    font-size: var(--body-md);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}

.auth-help-item p {
    font-size: var(--caption);
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes auth-emblem-in {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes auth-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes auth-card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered card entrance */
.auth-card:nth-child(2) { animation-delay: 0.08s; }
.auth-card:nth-child(3) { animation-delay: 0.16s; }

/* ==========================================================================
   MAINTENANCE / INFO BANNERS (auth-specific)
   ========================================================================== */
.auth-info-banner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-12);
    padding: var(--space-16);
    border-radius: var(--radius-lg);
    background: var(--error-light);
    border: 1px solid rgba(220, 38, 38, 0.1);
    animation: auth-card-in 0.4s both;
}

.auth-info-banner--warning {
    background: var(--gold-light);
    border-color: rgba(217, 119, 6, 0.1);
}

.auth-info-banner .material-symbols-rounded {
    font-size: 24px;
    color: var(--error);
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-info-banner--warning .material-symbols-rounded {
    color: var(--gold);
}

.auth-info-banner h3 {
    font-size: var(--body-md);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}

.auth-info-banner p {
    font-size: var(--caption);
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 0;
}

/* User Feedback Overrides */
.auth-enhanced-label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: var(--navy) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: var(--space-8) !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}
.auth-enhanced-label .material-symbols-rounded {
    font-size: 20px !important;
    color: var(--brand-accent) !important; /* Colorful logo */
}
.form-input, .otp-box {
    border: 1px solid var(--muted) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.text-center-enhanced {
    text-align: center !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
}

.otp-box {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #000000 !important;
}

.form-input:focus, .otp-box:focus {
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15) !important;
    transform: scale(1.02);
}
/* ==========================================================================
   RESPONSIVE — Extra small screens
   ========================================================================== */
@media (max-width: 340px) {
    .auth-hero-title { font-size: 24px; }
    .auth-hero-emblem { width: 60px; height: 60px; }
    .auth-hero-emblem-inner { width: 44px; height: 44px; }
    .auth-step-labels { font-size: 10px; }
    .auth-initiative-row { gap: var(--space-10); }
}

/* ==========================================================================
   PLATFORM SEARCHABLE SELECT
   ========================================================================== */
.platform-searchable-select {
    position: relative;
    width: 100%;
}

.platform-searchable-select .select-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-lg, 12px) !important;
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1)) !important;
    z-index: 1000;
    margin-top: 6px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    max-height: 260px;
    box-sizing: border-box;
}

.platform-searchable-select.active {
    z-index: 9999 !important;
}

.platform-searchable-select.active .select-dropdown-menu {
    display: flex;
}

.platform-searchable-select .select-search-wrapper {
    position: relative;
    width: 100%;
}

.platform-searchable-select .select-search-input {
    width: 100%;
    padding: 8px 12px 8px 36px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-md, 8px) !important;
    background: var(--surface-subtle, #F8FAFC) !important;
    color: var(--ink) !important;
    box-sizing: border-box;
}

.platform-searchable-select .select-search-input:focus {
    border-color: var(--brand-primary) !important;
    background: var(--surface) !important;
    outline: none;
    transform: none !important;
    box-shadow: none !important;
}

.platform-searchable-select .select-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--text-muted);
}

.platform-searchable-select .select-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.platform-searchable-select .select-options-list li {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.platform-searchable-select .select-options-list li:hover,
.platform-searchable-select .select-options-list li.selected {
    background: var(--saffron-light, rgba(255, 103, 31, 0.08)) !important;
    color: var(--saffron) !important;
}
