/* ═══════════════════════════════════════════════════════════
   SECURE BANKING 2FA — Design System
   Off-white, no gradients. Clean, premium, professional.
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
    /* Surfaces */
    --bg-primary:       #f5f4f0;
    --bg-secondary:     #eeedea;
    --bg-card:          #ffffff;
    --bg-input:         #fafaf8;
    --bg-hover:         #f0efeb;

    /* Borders */
    --border-light:     #e4e2dd;
    --border-medium:    #d4d2cc;
    --border-focus:     #1a1a1a;

    /* Text */
    --text-primary:     #1a1a1a;
    --text-secondary:   #5c5c5c;
    --text-tertiary:    #8a8a8a;
    --text-muted:       #b0b0b0;
    --text-inverse:     #ffffff;

    /* Accents */
    --accent:           #1a1a1a;
    --accent-hover:     #333333;
    --accent-subtle:    #f0efeb;

    /* Status */
    --success:          #2d7a3a;
    --success-bg:       #f0f8f1;
    --success-border:   #c3e2c7;
    --error:            #c53030;
    --error-bg:         #fdf2f2;
    --error-border:     #f5c6c6;
    --warning:          #b7791f;
    --warning-bg:       #fffff0;
    --warning-border:   #fefcbf;
    --info:             #2b6cb0;
    --info-bg:          #ebf8ff;
    --info-border:      #bee3f8;

    /* Typography */
    --font-sans:        'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono:        'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs:         4px;
    --space-sm:         8px;
    --space-md:         16px;
    --space-lg:         24px;
    --space-xl:         32px;
    --space-2xl:        48px;
    --space-3xl:        64px;

    /* Radius */
    --radius-sm:        6px;
    --radius-md:        10px;
    --radius-lg:        14px;

    /* Shadows */
    --shadow-sm:        0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md:        0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg:        0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-xl:        0 8px 32px rgba(0, 0, 0, 0.10);

    /* Transitions */
    --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast:    150ms;
    --duration-normal:  250ms;
    --duration-slow:    400ms;
}


/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
    color: var(--text-secondary);
}


/* ── Layout ──────────────────────────────────────────────── */
.auth-layout {
    display: flex;
    min-height: 100vh;
}

.auth-panel-left {
    flex: 1;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.auth-panel-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.015) 0%, transparent 50%);
    pointer-events: none;
}

.auth-panel-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-2xl);
    background-color: var(--bg-primary);
}

.brand {
    text-align: center;
    z-index: 1;
}

.brand-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 24px;
    color: var(--text-primary);
    background-color: var(--bg-card);
}

.brand h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.brand p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.5;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    text-align: left;
}

.brand-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 14px;
    color: var(--text-secondary);
}

.brand-feature .feature-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: var(--bg-card);
    flex-shrink: 0;
}


/* ── Card ────────────────────────────────────────────────── */
.auth-card {
    width: 100%;
    max-width: 420px;
    animation: fadeSlideUp var(--duration-slow) var(--ease-out) both;
}

.auth-card-header {
    margin-bottom: var(--space-xl);
}

.auth-card-header h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.auth-card-header p {
    font-size: 14px;
    color: var(--text-secondary);
}


/* ── Form Elements ───────────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 var(--space-md);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-primary);
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:hover {
    border-color: var(--border-medium);
}

.form-input:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.08);
}

.form-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
}


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

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-tertiary);
    font-size: 18px;
    padding: 4px;
    transition: color var(--duration-fast);
}

.password-toggle:hover {
    color: var(--text-primary);
}


/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    height: 48px;
    padding: 0 var(--space-xl);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    width: 100%;
    background-color: var(--accent);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary:disabled {
    background-color: var(--border-medium);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--bg-hover);
    border-color: var(--border-medium);
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    height: auto;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-link:hover {
    color: var(--text-primary);
}

.btn-link:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}


/* ── Loading Spinner ─────────────────────────────────────── */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.spinner-dark {
    border-color: rgba(26, 26, 26, 0.15);
    border-top-color: var(--text-primary);
}


/* ── OTP Input ───────────────────────────────────────────── */
.otp-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: var(--space-xl) 0;
}

.otp-digit {
    width: 52px;
    height: 62px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--duration-fast) var(--ease-out);
    caret-color: var(--accent);
}

.otp-digit:hover {
    border-color: var(--border-medium);
}

.otp-digit:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.otp-digit.filled {
    border-color: var(--accent);
    background-color: var(--accent-subtle);
}

.otp-digit.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.08);
    animation: headShake 0.5s ease-in-out;
}

.otp-digit.success {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(45, 122, 58, 0.08);
}


/* ── Timer ────────────────────────────────────────────────── */
.otp-timer {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.timer-display {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: var(--space-xs);
}

.timer-display.expiring {
    color: var(--error);
}

.timer-label {
    font-size: 13px;
    color: var(--text-tertiary);
}


/* ── Toast Notifications ─────────────────────────────────── */
.toast-container {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    animation: slideInRight var(--duration-normal) var(--ease-out) both;
}

.toast.removing {
    animation: slideOutRight var(--duration-normal) var(--ease-out) both;
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    padding: 2px;
    flex-shrink: 0;
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--error); }
.toast.warning { border-left: 3px solid var(--warning); }
.toast.info    { border-left: 3px solid var(--info); }


/* ── Alert Banners ───────────────────────────────────────── */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: fadeIn var(--duration-normal) var(--ease-out) both;
}

.alert-error {
    background-color: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error);
}

.alert-success {
    background-color: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success);
}

.alert-info {
    background-color: var(--info-bg);
    border: 1px solid var(--info-border);
    color: var(--info);
}


/* ── Dashboard ───────────────────────────────────────────── */
.dashboard-layout {
    min-height: 100vh;
    background-color: var(--bg-primary);
}

.dashboard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-brand-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-user {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.btn-logout {
    height: 36px;
    padding: 0 var(--space-md);
    font-size: 13px;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all var(--duration-fast);
}

.btn-logout:hover {
    background-color: var(--error-bg);
    color: var(--error);
    border-color: var(--error-border);
}

.dashboard-content {
    max-width: 960px;
    margin: 0 auto;
    padding: var(--space-2xl);
}

.dashboard-welcome {
    margin-bottom: var(--space-2xl);
}

.dashboard-welcome h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: var(--space-xs);
}

.dashboard-welcome p {
    font-size: 15px;
    color: var(--text-secondary);
}

.banking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.dashboard-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--duration-fast) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.dashboard-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

/* Balance Card */
.balance-card {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.balance-card .card-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.balance-amount {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.balance-trend {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 14px;
    font-weight: 500;
}

.trend-value {
    color: var(--success);
}

.trend-icon {
    color: var(--success);
}

.trend-label {
    color: var(--text-tertiary);
}

.quick-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    width: 100%;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    height: 56px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.action-btn:hover {
    background-color: var(--accent);
    color: var(--text-inverse);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Transactions Card */
.transactions-card {
    grid-column: span 2;
}

.card-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.transaction-item {
    display: flex;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-light);
    transition: transform var(--duration-fast);
}

.transaction-item:hover {
    transform: translateX(4px);
}

.transaction-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tx-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: var(--space-md);
}

.tx-details {
    flex: 1;
}

.tx-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.tx-date {
    font-size: 13px;
    color: var(--text-tertiary);
}

.tx-amount {
    font-size: 15px;
    font-weight: 600;
}

.tx-amount.positive {
    color: var(--success);
}

.tx-amount.negative {
    color: var(--text-primary);
}

/* Summary Card */
.summary-card {
    grid-column: span 1;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.summary-icon {
    width: 32px;
    height: 32px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    margin-top: 2px;
    font-size: 16px;
}

.summary-details {
    flex: 1;
}

.summary-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-subtitle {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-value {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-value .label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.card-value .value {
    font-weight: 500;
    color: var(--text-primary);
}


/* ── Divider ─────────────────────────────────────────────── */
.divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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


/* ── Footer Text ─────────────────────────────────────────── */
.auth-footer {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a {
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ── Password Strength ───────────────────────────────────── */
.password-strength {
    margin-top: var(--space-sm);
}

.strength-bar-track {
    height: 3px;
    background-color: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.strength-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    width: 0%;
    background-color: var(--border-medium);
}

.strength-bar-fill.weak       { width: 25%; background-color: var(--error); }
.strength-bar-fill.fair       { width: 50%; background-color: var(--warning); }
.strength-bar-fill.good       { width: 75%; background-color: var(--info); }
.strength-bar-fill.strong     { width: 100%; background-color: var(--success); }

.strength-label {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ── Resend Section ──────────────────────────────────────── */
.resend-section {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.resend-text {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-sm);
}

.resend-cooldown {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-tertiary);
}


/* ── Masked Email ────────────────────────────────────────── */
.otp-email-info {
    text-align: center;
    padding: var(--space-md);
    background-color: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.otp-email-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.otp-email-info .email {
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 13px;
}


/* ── Keyframes ───────────────────────────────────────────── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes headShake {
    0%   { transform: translateX(0); }
    15%  { transform: translateX(-6px); }
    30%  { transform: translateX(5px); }
    45%  { transform: translateX(-4px); }
    60%  { transform: translateX(2px); }
    75%  { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}


/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .auth-layout {
        flex-direction: column;
    }

    .auth-panel-left {
        padding: var(--space-2xl) var(--space-lg);
        min-height: auto;
    }

    .brand-features {
        display: none;
    }

    .auth-panel-right {
        padding: var(--space-xl) var(--space-lg);
    }
}

@media (max-width: 480px) {
    .otp-digit {
        width: 44px;
        height: 54px;
        font-size: 20px;
    }

    .otp-container {
        gap: 6px;
    }

    .auth-card-header h2 {
        font-size: 20px;
    }

    .timer-display {
        font-size: 26px;
    }

    .dashboard-content {
        padding: var(--space-lg);
    }
}
