.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.6s ease-in forwards;
}

/* Phone verification lock */
body.phone-verification-locked {
    overflow: hidden !important;
}

.phone-verification-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 17, 28, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1040;
    animation: phoneOverlayFade 0.25s ease both;
}

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

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.skeleton-loader {
    background: #f6f7f8;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f6f6f6 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 5px;
}

/* Skeleton for Image */
.skeleton.image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
}

/* Skeleton for Text Elements */
.skeleton.text {
    width: 80%;
    height: 15px;
    margin: 5px auto;
}

/* Skeleton for Auction Number */
.skeleton.auction-number {
    width: 50%;
    height: 20px;
    margin: 10px auto;
}

/* Skeleton for Small Countdown Boxes */
.skeleton.small-box {
    width: 40px;
    height: 25px;
    margin: auto;
}

/* Skeleton for High Bid Amount */
.skeleton.high-bid {
    width: 60%;
    height: 20px;
    margin: auto;
}

/* Skeleton for Storage Facility Name */
.skeleton.storage-name {
    width: 70%;
    height: 18px;
    margin: 10px auto;
}

/* Skeleton for Address */
.skeleton.address {
    width: 90%;
    height: 14px;
    margin: 5px auto;
}

/* Skeleton for Button */
.skeleton.button {
    width: 50%;
    height: 30px;
    margin: auto;
}

/* Skeleton Loading Animation */
@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 768px) {

    /* Targets small screens */
    .login-popup {
        margin-top: 20px !important;
    }
}

.alertNotification {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    /* Centering on the viewport */
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centering trick */
    margin: 4px 10px;
    color: inherit;
    flex: 1 1 auto;
    white-space: pre-line;
    background: #fff;
    color: #363636;
    line-height: 1.3;
    will-change: transform;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    pointer-events: auto;
    padding: 8px 10px;
    border-radius: 8px;
    z-index: 9999;
    /* Ensures it stays on top */
}

.bootstrap-switch-handle-on.bootstrap-switch-primary {
    color: #fff;
    background: #1C421D !important;
}


.table-skeleton-overlay {
    position: absolute;
    background: #f0f0f0;
    opacity: 0.7;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: shimmer 1.2s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.swiper-container {
    width: 100%;
    height: 260px;
    /* Adjust based on your image height */
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}


/* Colors */
:root {
    --brand-primary: #29b5a8;
    --brand-secondary: #ff8300;
    --gray: #6b7381;
    --gray-light: #8a919c;
    --gray-lighter: #b0b6bf;
}

.jumbotron {
    background: var(--gray);
    color: var(--gray-lighter);
}

.jumbotron h1 {
    color: #fff;
}

.example>.row {
    vertical-align: middle;
    text-align: center;
    border: 1px solid rgba(176, 182, 191, 0.5);
}

.example>.row:first-of-type {
    border: none;
    height: auto;
    text-align: left;
}

.example h3 {
    font-weight: 400;
}

.example h3>small {
    font-weight: 200;
    font-size: 0.75em;
    color: var(--gray-light);
}

.example h6 {
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 3.32px;
    text-transform: uppercase;
    color: var(--gray-lighter);
    margin: 0;
    line-height: 5rem;
}

/* Toggle Button Base */
.btn-toggle {
    margin: 0 4rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    border-radius: 1.5rem;
    background: var(--gray-lighter);
    color: var(--gray);
}

.btn-toggle:focus,
.btn-toggle.focus,
.btn-toggle:active {
    outline: none !important;
    box-shadow: none !important;
}

.btn-toggle:before,
.btn-toggle:after {
    line-height: 1.5rem;
    width: 4rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-toggle:before {
    content: "Monthly";
    left: -8rem;
}

.btn-toggle:after {
    content: "Yearly";
    right: -8rem;
    opacity: 0.5;
}

.btn-toggle>.handle {
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 1.125rem;
    background: #fff;
    transition: left 0.25s;
}

.btn-toggle.active {
    background-color: var(--text-yello-light);
    transition: background-color 0.25s;
}

.btn-toggle.active>.handle {
    left: 1.5rem;
}

.btn-toggle.active:before {
    opacity: 0.5;
}

.btn-toggle.active:after {
    opacity: 1;
}

/* Sizes */
.btn-toggle.btn-lg {
    height: 2.5rem;
    width: 5rem;
    border-radius: 2.5rem;
}

.btn-toggle.btn-lg:before,
.btn-toggle.btn-lg:after {
    font-size: 1rem;
    width: 5rem;
    line-height: 2.5rem;
}

.btn-toggle.btn-lg>.handle {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 1.875rem;
    top: 0.3125rem;
    left: 0.3125rem;
}

.btn-toggle.btn-lg.active>.handle {
    left: 2.5rem;
}

.btn-toggle.btn-sm {
    height: 1.25rem;
    width: 2.5rem;
    border-radius: 1.25rem;
}

.btn-toggle.btn-sm:before,
.btn-toggle.btn-sm:after {
    line-height: 1.25rem;
    font-size: 0.55rem;
    width: 0.5rem;
}

.btn-toggle.btn-sm>.handle {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 0.75rem;
    top: 0.125rem;
    left: 0.125rem;
}

.btn-toggle.btn-sm.active>.handle {
    left: 1.25rem;
}

.btn-toggle.btn-xs {
    height: 1rem;
    width: 2rem;
    border-radius: 1rem;
}

.btn-toggle.btn-xs:before,
.btn-toggle.btn-xs:after {
    display: none;
}

.btn-toggle.btn-xs>.handle {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.5rem;
    top: 0.25rem;
    left: 0.25rem;
}

.btn-toggle.btn-xs.active>.handle {
    left: 1rem;
}

/* Secondary color variant */
.btn-toggle.btn-secondary.active {
    background-color: var(--brand-secondary);
}

.membership-card {
    background: #f1f0f0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.membership-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
    border: 2px solid white;
    color: black;
}

.membership-card.active-sub {
    background: var(--text-yello-light);
    border: 2px solid var(--text-yello-light);
    cursor: default;
    color: white;
}

.membership-card.active-sub:hover {
    transform: none;
    box-shadow: none;
}

.skeleton {
    background: linear-gradient(90deg, #e2e2e2 25%, #f3f3f3 50%, #e2e2e2 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
    display: block;
}

.skeleton-title { height: 20px; border-radius: 4px; }
.skeleton-text { height: 14px; border-radius: 4px; }
.skeleton-btn { height: 36px; border-radius: 6px; }
.skeleton-box { background: #f8f9fa; border: 1px solid #ddd; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* New updates here */
/* Login/sign up modal */
.modal-brand { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.1rem; }
.modal-brand-icon { width: 32px; height: 32px; background: #f5a623; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.modal-brand-name { font-size: 1rem; font-weight: 700; color: #111; }
.modal-brand-name span { color: #f5a623; }
.modal h2 { text-align: center; font-size: 1.55rem; font-weight: 800; color: #111; margin-bottom: 0.35rem; }
.modal-sub { text-align: center; color: #6b7280; font-size: 0.9rem; margin-bottom: 1.6rem; line-height: 1.5; }
.modal-sub strong { color: #1a5c35; }
.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 1rem; }
.role-card { border: 2px solid #e5e7eb; border-radius: 14px; padding: 1.1rem 0.9rem; cursor: pointer; text-align: center; transition: border-color .2s, box-shadow .2s, transform .15s; text-decoration: none; display: block; }
.role-card:hover { border-color: #1a5c35; box-shadow: 0 4px 16px rgba(26,92,53,0.15); transform: translateY(-2px); }
.role-card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.role-card-title { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.2rem; }
.role-card-desc { font-size: 0.75rem; color: #6b7280; line-height: 1.4; }
.role-card-cta { display: inline-block; margin-top: 0.65rem; background: #1a5c35; color: #fff; font-size: 0.78rem; font-weight: 700; padding: 0.35rem 0.9rem; border-radius: 999px; transition: background .2s; }
.role-card:hover .role-card-cta { background: #145029; }
.role-card-free { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; background: #fef3c7; color: #92400e; padding: 2px 7px; border-radius: 999px; display: inline-block; margin-bottom: 0.4rem; }
.modal-divider { display: flex; align-items: center; gap: 0.75rem; margin: 0.5rem 0 0.85rem; }
.modal-divider hr { flex: 1; border: none; border-top: 1px solid #e5e7eb; }
.modal-divider span { font-size: 0.8rem; color: #9ca3af; white-space: nowrap; }
.btn-existing { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; border: 2px solid #d1d5db; background: #fff; color: #374151; border-radius: 12px; padding: 0.8rem 1rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: border-color .2s, background .2s, transform .15s; }
.btn-existing:hover { border-color: #1a5c35; background: #f0fdf4; color: #1a5c35; transform: translateY(-1px); }
.btn-existing svg { width: 18px; height: 18px; }
.modal-trust { text-align: center; margin-top: 1.1rem; font-size: 0.75rem; color: #9ca3af; display: flex; align-items: center; justify-content: center; gap: 0.3rem; }
.modal-trust svg { width: 13px; height: 13px; }

/* ── LOGIN STEP ── */
.form-group { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.1rem; }
.form-label { font-size: 0.82rem; font-weight: 700; color: #374151; margin-bottom: 0.35rem; display: block; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #d1d5db; border-radius: 12px; font-size: 0.95rem; color: #111827; background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; box-sizing: border-box; font-family: inherit; }
.form-input::placeholder { color: #9ca3af; }
.form-input:focus { border-color: #1a5c35; box-shadow: 0 0 0 3px rgba(26,92,53,0.1); }
.form-error { font-size: 0.78rem; color: #dc2626; margin-top: 0.3rem; }
.pw-wrapper { position: relative; display: flex; align-items: center; }
.pw-wrapper .form-input { padding-right: 2.8rem; }
.pw-toggle { position: absolute; right: 0.75rem; background: none; border: none; cursor: pointer; padding: 0; color: #9ca3af; display: flex; align-items: center; transition: color .2s; }
.pw-toggle:hover { color: #1a5c35; }
.pw-toggle svg { width: 18px; height: 18px; }
.login-forgot { font-size: 0.8rem; color: #1a5c35; font-weight: 600; text-decoration: none; transition: color .2s; }
.login-forgot:hover { color: #f5a623; }
.login-back { display: block; text-align: center; margin-top: 1rem; font-size: 0.82rem; color: #9ca3af; text-decoration: none; transition: color .2s; }
.login-back:hover { color: #1a5c35; }
.btn-login-alt { flex: 1; display: block; text-align: center; padding: 0.65rem 0.5rem; border: 2px solid #d1d5db; border-radius: 10px; font-size: 0.82rem; font-weight: 600; color: #374151; text-decoration: none; transition: border-color .2s, background .2s, color .2s; }
.btn-login-alt:hover { border-color: #1a5c35; background: #f0fdf4; color: #1a5c35; }
.login-error-banner { display: none; background: #fef2f2; border: 1px solid #fca5a5; border-radius: 10px; padding: 0.7rem 1rem; font-size: 0.84rem; color: #dc2626; font-weight: 600; margin-bottom: 1rem; text-align: center; }
.login-error-banner.visible { display: block; }
.btn-login-submit { width: 100%; padding: 0.85rem 1rem; background: #f5a623; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; color: #1a1a1a; cursor: pointer; letter-spacing: 0.01em; transition: background .2s, transform .1s, box-shadow .2s; box-shadow: 0 2px 8px rgba(245,166,35,0.25); font-family: inherit; }
.btn-login-submit:hover { background: #e8961a; box-shadow: 0 4px 16px rgba(245,166,35,0.4); }
.btn-login-submit:active { transform: scale(0.98); }

/* ── PROGRESS BAR ── */
.signup-progress { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.progress-step { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; background: #e5e7eb; color: #9ca3af; transition: background .3s, color .3s; }
.progress-step.active { background: #1a5c35; color: #fff; }
.progress-step.done { background: #d1fae5; color: #065f46; }
.progress-line { flex: 1; height: 2px; background: #e5e7eb; max-width: 60px; border-radius: 2px; transition: background .3s; }
.progress-line.done { background: #1a5c35; }

/* ── FORM FIELDS ── */
.signup-form { display: flex; flex-direction: column; gap: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field-group { display: flex; flex-direction: column; gap: 0.3rem; }
.field-group label { font-size: 0.78rem; font-weight: 600; color: #374151; }
.field-group input:not([type=checkbox]):not([type=radio]),
    .field-group select { border: 1.5px solid #d1d5db; border-radius: 10px; padding: 0.7rem 0.9rem; font-size: 0.9rem; color: #111; outline: none; transition: border-color .2s, box-shadow .2s; background: #fff; width: 100%; }
.field-group input:focus, .field-group select:focus { border-color: #1a5c35; box-shadow: 0 0 0 3px rgba(26,92,53,0.1); }
.field-group input::placeholder { color: #9ca3af; }
.field-group input.error { border-color: #ef4444; }
.field-error { font-size: 0.72rem; color: #ef4444; margin-top: 0.1rem; display: none; }
.field-error.show { display: block; }

/* Phone field with flag */
.phone-wrap { display: flex; gap: 0.5rem; }
.phone-prefix { border: 1.5px solid #d1d5db; border-radius: 10px; padding: 0.7rem 0.75rem; font-size: 0.9rem; color: #374151; background: #f9fafb; white-space: nowrap; display: flex; align-items: center; gap: 0.3rem; font-weight: 600; }
.phone-wrap input { flex: 1; }

/* Password */
.password-wrap { position: relative; }
.password-wrap input { padding-right: 2.5rem; }

/* Terms */
.terms-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.78rem; color: #6b7280; line-height: 1.5; }
.terms-row input[type="checkbox"] { margin-top: 2px; accent-color: #1a5c35; flex-shrink: 0; }
.terms-row a { color: #1a5c35; text-decoration: underline; }

/* Deferred notice */
.defer-notice { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 0.7rem 0.9rem; font-size: 0.78rem; color: #065f46; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.defer-notice .defer-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.05rem; }

/* CTA buttons */
.btn-register { width: 100%; padding: 0.9rem; border: none; border-radius: 12px; background: #1a5c35; color: #fff; font-size: 1rem; font-weight: 700; cursor: pointer; letter-spacing: 0.03em; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 4px 14px rgba(26,92,53,0.3); }
.btn-register:hover { background: #145029; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,92,53,0.35); }
.btn-register:disabled { background: #9ca3af; box-shadow: none; cursor: not-allowed; transform: none; }
.back-link { text-align: center; font-size: 0.82rem; color: #6b7280; cursor: pointer; margin-top: 0.25rem; background: none; border: none; text-decoration: underline; display: block; width: 100%; }
.back-link:hover { color: #374151; }

/* ════════════════════════════════════
   BIDDER STEP 2 — Mobile 2FA
════════════════════════════════════ */
.twofa-icon { font-size: 2.8rem; text-align: center; margin-bottom: 0.75rem; }
.twofa-heading { font-size: 1.3rem; font-weight: 800; color: #111; text-align: center; margin-bottom: 0.3rem; }
.twofa-sub { font-size: 0.88rem; color: #6b7280; text-align: center; line-height: 1.6; margin-bottom: 1.4rem; }
.twofa-sub strong { color: #111; }

/* OTP input row */
.otp-row { display: flex; gap: 0.6rem; justify-content: center; margin-bottom: 1rem; }
.otp-digit {
  width: 52px; height: 60px; border: 2px solid #d1d5db; border-radius: 12px;
  text-align: center; font-size: 1.5rem; font-weight: 700; color: #111;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.otp-digit:focus { border-color: #1a5c35; box-shadow: 0 0 0 3px rgba(26,92,53,0.12); }
.otp-digit.filled { border-color: #1a5c35; background: #f0fdf4; }

.resend-row { text-align: center; font-size: 0.8rem; color: #9ca3af; margin-bottom: 1.1rem; }
.resend-row a { color: #1a5c35; text-decoration: underline; cursor: pointer; }
.resend-timer { font-weight: 600; color: #374151; }

/* 2FA success */
.success-screen { text-align: center; padding: 0.5rem 0; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-screen h3 { font-size: 1.4rem; font-weight: 800; color: #111; margin-bottom: 0.5rem; }
.success-screen p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; margin-bottom: 1.2rem; }
.success-checklist { text-align: left; background: #f9fafb; border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.success-checklist li { font-size: 0.82rem; color: #374151; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; list-style: none; }
.success-checklist li::before { content: '✓'; color: #1a5c35; font-weight: 700; }
.btn-go { width: 100%; padding: 0.85rem; border: none; border-radius: 12px; background: #1a5c35; color: #fff; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-go:hover { background: #145029; }

/* ════════════════════════════════════
   FACILITY MODAL
════════════════════════════════════ */
.facility-intro { background: linear-gradient(135deg, #0d3320, #1a5c35); border-radius: 14px; padding: 1.1rem 1.2rem; margin-bottom: 1.3rem; text-align: center; }
.facility-intro p { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.facility-intro strong { color: #fde68a; }

.facility-form { display: flex; flex-direction: column; gap: 0.9rem; }

/* Sending animation */
.sending-overlay { display: none; position: absolute; inset: 0; background: rgba(255,255,255,0.92); border-radius: 20px; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; z-index: 10; }
.sending-overlay.active { display: flex; }
.spinner { width: 40px; height: 40px; border: 4px solid #e5e7eb; border-top-color: #1a5c35; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.sending-text { font-size: 0.9rem; color: #374151; font-weight: 600; }

/* Facility success */
.facility-success { display: none; text-align: center; padding: 0.5rem 0; }
.facility-success .success-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.facility-success h3 { font-size: 1.3rem; font-weight: 800; color: #111; margin-bottom: 0.5rem; }
.facility-success p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; margin-bottom: 1rem; }
.facility-success .next-steps { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 1rem 1.2rem; text-align: left; margin-bottom: 1.2rem; }
.facility-success .next-steps li { font-size: 0.82rem; color: #065f46; margin-bottom: 0.4rem; list-style: none; display: flex; align-items: flex-start; gap: 0.5rem; }
.facility-success .next-steps li::before { content: '→'; font-weight: 700; flex-shrink: 0; }


@media (max-width: 640px) {
    /* Modal: full-screen on mobile */
    .overlay { align-items: flex-end; }
    #unifiedAuthModal.modal { width: 100%; border-radius: 20px 20px 0 0; max-height: 92vh; padding: 1.6rem 1.2rem 1.4rem; }
    #unifiedAuthModal.modal h2 { font-size: 1.3rem; }
    #unifiedAuthModal.modal-sub { font-size: 0.82rem; margin-bottom: 1.2rem; }

    /* Role cards: stack on mobile */
    .role-cards { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .role-card { padding: 0.85rem 0.6rem; }
    .role-card-icon { font-size: 1.5rem; }
    .role-card-title { font-size: 0.85rem; }
    .role-card-desc { font-size: 0.7rem; }

    /* Form rows: always single column */
    .form-row { grid-template-columns: 1fr; gap: 0.6rem; }

    /* OTP digits: smaller on tiny screens */
    .otp-digit { width: 42px; height: 52px; font-size: 1.3rem; }
    .otp-row { gap: 0.4rem; }
}