/* ═══════════════════════════════════════════════════════════
   ASSETVENTO — AUTH PAGES
   Same design tokens as the landing page (main.css).
   Cream / Ink / Orange — no purple, no dark glass.
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink:        #0a0a0a;
    --charcoal:   #1c1c1c;
    --cream:      #f5f0e6;
    --paper:      #faf6ed;
    --warm:       #fdfaf3;
    --orange:     #f97316;
    --orange-dk:  #c05b0e;
    --tx-mut:     #525252;
    --tx-soft:    #737373;
    --tx-faint:   #a3a3a3;
    --tx-cream:   #f5f0e6;
    --br-ink:     rgba(10,10,10,0.10);
    --br-ink-2:   rgba(10,10,10,0.16);
    --f-disp:     'Fraunces', 'Times New Roman', Georgia, serif;
    --f-sans:     'Plus Jakarta Sans', 'Inter', sans-serif;
    --f-mono:     'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

/* ── Utilities ── */
.hidden { display: none !important; }
.opacity-0 { opacity: 0; }

/* ─────────────────────────────────────────────────────────
   SPLIT LAYOUT  (login / signup)
───────────────────────────────────────────────────────── */

body.auth-body {
    min-height: 100vh;
    background: var(--paper);
    font-family: var(--f-sans);
    -webkit-font-smoothing: antialiased;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 48px 120px rgba(0,0,0,0.22), 0 8px 32px rgba(0,0,0,0.10);
    border: 1px solid rgba(10,10,10,0.06);
}

/* ── LEFT: Dark ink panel ── */
.auth-left {
    background: var(--ink);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 52px;
}
.auth-logo-name {
    font-family: var(--f-disp);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    line-height: 1;
}
.auth-logo-dot { color: var(--orange); }

.auth-headline {
    font-family: var(--f-disp);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--cream);
    line-height: 1.22;
    margin-bottom: 12px;
}
.auth-headline em {
    font-style: italic;
    color: var(--orange);
}

.auth-left-desc {
    font-size: 0.875rem;
    color: #5a5a5a;
    line-height: 1.65;
    max-width: 270px;
    margin-bottom: 40px;
}

.auth-features { display: flex; flex-direction: column; gap: 20px; }
.auth-feature  { display: flex; align-items: center; gap: 16px; }
.auth-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.auth-feature-icon.o  { background: rgba(249,115,22,0.12); }
.auth-feature-icon.g  { background: rgba(52,211,153,0.12); }
.auth-feature-icon.b  { background: rgba(96,165,250,0.12); }
.auth-feature-icon.v  { background: rgba(167,139,250,0.12); }
.auth-feature-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}
.auth-feature-desc { font-size: 0.75rem; color: #4a4a4a; }

.auth-stats {
    border-top: 1px solid rgba(245,240,230,0.07);
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}
.auth-stat-val {
    font-family: var(--f-disp);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: -0.01em;
}
.auth-stat-lbl { font-size: 0.7rem; color: #4a4a4a; margin-top: 2px; }

/* ── RIGHT: Cream form panel ── */
.auth-right {
    background: var(--paper);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-right-scroll {
    max-height: 100vh;
    overflow-y: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
    scrollbar-color: rgba(10,10,10,0.12) transparent;
}
.auth-right-scroll::-webkit-scrollbar { width: 4px; }
.auth-right-scroll::-webkit-scrollbar-thumb { background: rgba(10,10,10,0.12); border-radius: 4px; }

/* Mobile logo */
.auth-mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 28px;
}
.auth-mobile-logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* Form head */
.auth-form-head { margin-bottom: 28px; }
.auth-form-title {
    font-family: var(--f-disp);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 6px;
}
.auth-form-sub { font-size: 0.875rem; color: var(--tx-soft); }

/* Label */
.auth-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--tx-soft);
    margin-bottom: 7px;
}

/* Field wrapper */
.auth-field { margin-bottom: 20px; }

/* Input */
.auth-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--warm);
    border: 1px solid var(--br-ink-2);
    border-radius: 12px;
    font-family: var(--f-sans);
    font-size: 0.875rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}
.auth-input::placeholder { color: var(--tx-faint); }
.auth-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
}
.auth-input[type="date"] { color-scheme: light; }

/* Input with icon */
.auth-input-wrap { position: relative; }
.auth-input-wrap .auth-input { padding-right: 44px; }
.auth-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tx-faint);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: color 0.15s;
}
.auth-input-icon:hover { color: var(--tx-mut); }
.auth-input-icon svg { width: 16px; height: 16px; }

/* Select */
.auth-select {
    width: 100%;
    padding: 12px 36px 12px 16px;
    background: var(--warm);
    border: 1px solid var(--br-ink-2);
    border-radius: 12px;
    font-family: var(--f-sans);
    font-size: 0.875rem;
    color: var(--ink);
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
}
.auth-select-wrap { position: relative; }
.auth-select-wrap svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--tx-faint);
    width: 14px;
    height: 14px;
}

/* Error & hint */
.auth-error {
    font-size: 11.5px;
    color: #b91c1c;
    font-weight: 500;
    margin-top: 5px;
    min-height: 16px;
    transition: opacity 0.2s;
}
.auth-hint {
    font-size: 11px;
    color: var(--tx-faint);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.4;
}
.auth-hint svg { width: 11px; height: 11px; flex-shrink: 0; }

/* Label row (label + link) */
.auth-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}
.auth-forgot {
    font-size: 12px;
    color: var(--tx-soft);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}
.auth-forgot:hover { color: var(--orange); }

/* Checkbox */
.auth-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.auth-check-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--orange);
    border: 1.5px solid var(--br-ink-2);
}
.auth-check-label {
    font-size: 12.5px;
    color: var(--tx-soft);
    line-height: 1.55;
    cursor: pointer;
}
.auth-check-label a { color: var(--orange); font-weight: 700; text-decoration: none; }
.auth-check-label a:hover { color: var(--orange-dk); }

/* Primary button */
.auth-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--orange);
    color: #fff;
    font-family: var(--f-sans);
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(249,115,22,0.30);
    letter-spacing: -0.01em;
}
.auth-btn:hover {
    background: var(--orange-dk);
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(249,115,22,0.38);
}
.auth-btn:active { transform: none; }
.auth-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Ghost button */
.auth-btn-ghost {
    padding: 14px 20px;
    background: transparent;
    border: 1px solid var(--br-ink-2);
    border-radius: 12px;
    font-family: var(--f-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tx-mut);
    cursor: pointer;
    transition: all 0.18s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.auth-btn-ghost:hover {
    background: rgba(10,10,10,0.05);
    color: var(--ink);
    border-color: rgba(10,10,10,0.28);
}

.auth-btn-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.auth-btn-row .auth-btn { flex: 1; }

/* Footer */
.auth-foot {
    border-top: 1px solid var(--br-ink);
    padding-top: 20px;
    margin-top: 24px;
    text-align: center;
}
.auth-foot-text { font-size: 0.875rem; color: var(--tx-soft); }
.auth-foot-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.15s;
}
.auth-foot-link:hover { color: var(--orange-dk); }
.auth-foot-secure {
    font-size: 11px;
    color: var(--tx-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}
.auth-foot-secure svg { width: 11px; height: 11px; }

/* ─────────────────────────────────────────────────────────
   STEP INDICATOR  (signup)
───────────────────────────────────────────────────────── */
.auth-steps {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}
.auth-step-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.auth-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid var(--br-ink-2);
    background: var(--warm);
    color: var(--tx-faint);
}
.auth-step-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.18);
}
.auth-step-dot.done {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.auth-step-lbl {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tx-faint);
    text-align: center;
    white-space: nowrap;
}
.auth-step-line-wrap {
    flex: 1;
    padding-top: 14px;
    margin: 0 4px;
}
.auth-step-line {
    height: 1px;
    background: var(--br-ink);
    position: relative;
    overflow: hidden;
}
.auth-step-line-fill {
    position: absolute;
    inset-y: 0;
    left: 0;
    background: var(--orange);
    transition: width 0.45s ease;
    width: 0%;
}

/* ─────────────────────────────────────────────────────────
   CENTERED LAYOUT  (OTP / 2FA)
───────────────────────────────────────────────────────── */
body.auth-center-body {
    min-height: 100vh;
    background: var(--ink);
    font-family: var(--f-sans);
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.auth-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}
.auth-blob-1 {
    width: 520px; height: 520px;
    top: -18%; left: -10%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.18) 0%, transparent 70%);
}
.auth-blob-2 {
    width: 420px; height: 420px;
    bottom: -18%; right: -10%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.10) 0%, transparent 70%);
}

.auth-center-card {
    background: var(--paper);
    border-radius: 28px;
    padding: 52px 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 48px 100px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.20);
    border: 1px solid rgba(245,240,230,0.06);
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Center card header */
.auth-center-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(249,115,22,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--orange);
}
.auth-center-icon svg { width: 24px; height: 24px; }

.auth-center-title {
    font-family: var(--f-disp);
    font-size: 1.65rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.2;
}
.auth-center-sub {
    font-size: 0.875rem;
    color: var(--tx-soft);
    line-height: 1.55;
    margin-bottom: 32px;
}

/* OTP inputs */
.otp-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.otp-input {
    width: 48px;
    height: 58px;
    text-align: center;
    font-family: var(--f-mono);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--warm);
    border: 1.5px solid var(--br-ink-2);
    border-radius: 12px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -moz-appearance: textfield;
}
.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.otp-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

/* OTP error */
.auth-otp-error {
    font-size: 12.5px;
    color: #b91c1c;
    font-weight: 500;
    margin-bottom: 16px;
    min-height: 18px;
}

/* Resend strip */
.auth-resend {
    margin-top: 20px;
    font-size: 13px;
    color: var(--tx-soft);
}
.auth-resend-btn {
    background: none;
    border: none;
    color: var(--orange);
    font-weight: 700;
    font-family: var(--f-sans);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.15s;
    padding: 0;
    margin-left: 4px;
}
.auth-resend-btn:hover { color: var(--orange-dk); }
.auth-countdown {
    font-size: 12.5px;
    color: var(--orange);
    font-weight: 600;
    margin-top: 8px;
}

/* 2FA single input */
.auth-2fa-input {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    font-family: var(--f-mono);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.45em;
    background: var(--warm);
    border: 1.5px solid var(--br-ink-2);
    border-radius: 14px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 16px;
}
.auth-2fa-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.auth-2fa-input.recovery-mode {
    letter-spacing: 0.08em;
    font-size: 1.1rem;
}

.auth-toggle-btn {
    background: none;
    border: none;
    font-family: var(--f-sans);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tx-soft);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
    margin-bottom: 24px;
}
.auth-toggle-btn:hover { color: var(--orange); }
.auth-toggle-btn svg { width: 13px; height: 13px; }

.auth-secure-note {
    font-size: 11px;
    color: var(--tx-faint);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.auth-secure-note svg { width: 11px; height: 11px; }

/* ─────────────────────────────────────────────────────────
   MODALS
───────────────────────────────────────────────────────── */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}
.auth-modal-card {
    background: var(--paper);
    border: 1px solid var(--br-ink);
    border-radius: 24px;
    padding: 40px 36px;
    text-align: center;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0,0,0,0.22);
}
.auth-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.auth-modal-icon.orange { background: rgba(249,115,22,0.10); color: var(--orange); }
.auth-modal-icon.red    { background: rgba(185,28,28,0.08);  color: #b91c1c; }
.auth-modal-icon svg { width: 24px; height: 24px; }
.auth-modal-title {
    font-family: var(--f-disp);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.auth-modal-sub {
    font-size: 0.875rem;
    color: var(--tx-soft);
    line-height: 1.6;
    margin-bottom: 24px;
}
.auth-modal-sub strong { color: var(--ink); font-weight: 700; }
.auth-modal-inset {
    background: rgba(10,10,10,0.04);
    border: 1px solid var(--br-ink);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 12.5px;
    color: var(--tx-soft);
}
.auth-modal-btns { display: flex; gap: 10px; }
.auth-modal-btns .auth-btn,
.auth-modal-btns .auth-btn-ghost { flex: 1; }

/* Spinner */
.auth-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(249,115,22,0.15);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: authSpin 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes authSpin { to { transform: rotate(360deg); } }

/* ── Signup notification modal ── */
#modal {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
    opacity: 1;
    transition: opacity 0.3s;
}
#modalContent {
    background: var(--paper);
    border: 1px solid var(--br-ink);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.22);
    transition: all 0.3s;
}
#modalContent h2 {
    font-family: var(--f-disp);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
#modalMessage {
    font-size: 0.875rem;
    color: var(--tx-soft);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ─────────────────────────────────────────────────────────
   BLOB ANIMATION  (OTP / 2FA center pages)
───────────────────────────────────────────────────────── */
@keyframes authBlobPulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
    50%       { transform: scale(1.1) translate(18px, -14px); opacity: 0.85; }
}
.auth-blob-1 { animation: authBlobPulse 14s ease-in-out infinite; }
.auth-blob-2 { animation: authBlobPulse 11s ease-in-out infinite reverse; }

/* ─────────────────────────────────────────────────────────
   JS-INJECTED UTILITY CLASSES
   (used by login.js / otp.js / 2fa inline scripts)
───────────────────────────────────────────────────────── */
.border-red-500   { border-color: #ef4444 !important; }
.border-green-500 { border-color: #22c55e !important; }
.text-green-500   { color: #22c55e !important; }

.w-4 { width: 16px !important; }
.h-4 { height: 16px !important; }
.w-5 { width: 20px !important; }
.h-5 { height: 20px !important; }
.inline { display: inline !important; }
.mr-2   { margin-right: 8px !important; }

.animate-spin {
    animation: authSpin 0.8s linear infinite !important;
}
.animate-pulse {
    animation: authPulse 1.4s ease-in-out infinite !important;
}
@keyframes authPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}

/* Inline button spinner (2FA verify loading state) */
.auth-spinner-sm {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: authSpin 0.75s linear infinite;
    vertical-align: middle;
}

/* Prevent mobile input auto-zoom (iOS zooms on any input < 16px) */
@media (max-width: 768px) {
    .auth-input,
    .auth-select { font-size: 1rem !important; }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .auth-card { grid-template-columns: 1fr; }
    .auth-left { display: none; }
    .auth-right { padding: 40px 32px; }
    .auth-right-scroll { max-height: none; }
    .auth-mobile-logo { display: block; }
}
@media (max-width: 540px) {
    /* Split layout (login / signup) */
    body.auth-body { padding: 0; }
    .auth-card { border-radius: 0; box-shadow: none; min-height: 100vh; }
    .auth-right { padding: 40px 24px; justify-content: center; }

    /* Center layout (OTP / 2FA) — fill the full screen */
    body.auth-center-body {
        padding: 0;
        height: 100vh;
        align-items: stretch;
        overflow: auto;
    }
    .auth-center-card {
        border-radius: 0;
        max-width: none;
        padding: 48px 28px;
        box-shadow: none;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* OTP inputs */
    .otp-input { width: 40px; height: 52px; font-size: 1.2rem; }
    .otp-row { gap: 6px; }
}
