/* تعریف فونت آفلاین Vazirmatn */
@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-main: #090a0f;
  --bg-card: #12141d;
  --color-blue: #0070f3;
  --color-blue-hover: #005bb5;
  --color-red: #ff3b30;
  --text-white: #ffffff;
  --text-muted: #888e9e;
  --border-color: #1f2330;
  --font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}

.login-container {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  height: auto;
}

/* ================= سمت راست: بخش فرم (۵۰٪ صفحه) ================= */
.login-section {
  flex: 1 1 50%;
  width: 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; /* محتوا وسط‌چین افقی */
  padding: 2rem 2rem 2.5rem;
  background-color: var(--bg-main);
  z-index: 10;
  border-left: none;
  /* سایه نرم در مرز با کره زمین برای محو شدن تدریجی */
  box-shadow: -24px 0 50px 18px rgba(9, 10, 15, 0.85),
              -12px 0 28px 8px rgba(9, 10, 15, 0.6);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100vh;
}

/* محدود کردن عرض فرم به اندازه استاندارد */
.login-section > * {
  width: 100%;
  max-width: 360px;
}

/* لایه محو اضافی روی لبه چپ پنل (تداخل با کره) */
.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 100%;
  background: linear-gradient(to left, rgba(9, 10, 15, 0.95) 0%, rgba(9, 10, 15, 0.45) 45%, rgba(9, 10, 15, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.brand-logo {
  margin-bottom: 0.85rem;
}

.brand-logo img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.login-header h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-white);
}

.login-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.15rem;
}

/* تب‌ها — موقعیت ثابت، محتوا زیرشان تغییر می‌کند */
.login-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
  background: var(--bg-card);
  padding: 0.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 0.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-white);
}

.tab-btn.active {
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
}

/* پنل‌های تب — فقط پنل فعال؛ بدون ارتفاع ثابت تا فوتر زیر دکمه بماند */
.tab-panel {
  display: none !important;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}

.tab-panel.active {
  display: flex !important;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-group label {
  font-size: 0.8rem;
  color: #a1a7b5;
}

.input-group input {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}

.input-group input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15);
}

.input-group input::placeholder {
  color: #555b6b;
}

.input-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

/* پسورد با دکمه نمایش */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  padding-left: 2.5rem;
}

.toggle-password {
  position: absolute;
  left: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

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

.toggle-password .hidden {
  display: none;
}

/* شماره تلفن — پیش‌شماره سمت چپ باکس */
.phone-wrapper {
  display: flex;
  align-items: stretch;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  direction: ltr; /* اجباری برای قرار گرفتن +۹۸ در سمت چپ */
}

.phone-wrapper:focus-within {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15);
}

.phone-plus {
  display: flex;
  align-items: center;
  padding: 0 0.35rem 0 0.75rem;
  background: rgba(0, 112, 243, 0.08);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 0.95rem;
  direction: ltr;
  flex-shrink: 0;
  user-select: none;
}

.phone-prefix-input {
  width: 2.6rem;
  min-width: 2.4rem;
  max-width: 3.2rem;
  border: none !important;
  background: rgba(0, 112, 243, 0.08) !important;
  color: var(--color-blue) !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  direction: ltr;
  padding: 0 0.25rem 0 0 !important;
  border-radius: 0 !important;
  border-right: 1px solid var(--border-color) !important;
  flex-shrink: 0;
  box-shadow: none !important;
}

.phone-prefix-input:focus {
  outline: none;
  box-shadow: none !important;
}

.phone-wrapper input[type="tel"] {
  border: none;
  background: transparent;
  border-radius: 0;
  flex: 1;
  direction: ltr;
  text-align: left;
}

.phone-wrapper input[type="tel"]:focus {
  box-shadow: none;
}

/* ضد اسپم */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* اکشن‌های فرم */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.remember-me input {
  accent-color: var(--color-blue);
  width: 16px;
  height: 16px;
}

.forgot-pass {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition);
}

.forgot-pass:hover {
  opacity: 0.8;
}

/* دکمه‌ها */
.btn-submit {
  background-color: var(--color-blue);
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.35rem;
  transition: background-color var(--transition), opacity var(--transition);
  width: 100%;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--color-blue-hover);
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-blue);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--transition);
}

.btn-link:hover:not(:disabled) {
  opacity: 0.8;
}

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

/* مراحل OTP */
.otp-step {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.otp-step.active {
  display: flex;
}

.otp-info {
  background: rgba(0, 112, 243, 0.08);
  border: 1px solid rgba(0, 112, 243, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.otp-info strong {
  color: var(--text-white);
  direction: ltr;
  display: inline-block;
}

.otp-timer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.otp-timer-row strong {
  color: var(--color-blue);
  font-variant-numeric: tabular-nums;
}

/* فوتر — بلافاصله زیر دکمه ارسال/ورود (نه ته کارت) */
.login-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.login-footer a {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 700;
}

/* ================= سمت چپ: انیمیشن کره زمین ================= */
.globe-section {
  flex: 1 1 50%;
  width: 50%;
  max-width: 50%;
  position: relative;
  background-color: #050608;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#globeCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.globe-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* تاریکی و محو قوی پشت شعار (سمت چپ) */
    linear-gradient(to right, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.75) 22%, rgba(5,6,8,0.35) 42%, rgba(5,6,8,0) 58%),
    /* محو سمت راست نزدیک پنل فرم */
    linear-gradient(to left, rgba(5,6,8,0.75) 0%, rgba(5,6,8,0.3) 18%, rgba(5,6,8,0) 40%),
    radial-gradient(ellipse at 25% 50%, rgba(5, 6, 8, 0.6) 0%, rgba(5, 6, 8, 0.25) 40%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 2rem 3rem;
  max-width: 460px;
  text-align: right;
  /* سایه و تاریکی اضافی پشت متن شعار برای محو کامل کره */
  background: radial-gradient(ellipse at center, rgba(5,6,8,0.55) 0%, rgba(5,6,8,0.25) 55%, transparent 75%);
  border-radius: 16px;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: rgba(0, 112, 243, 0.12);
  border: 1px solid rgba(0, 112, 243, 0.3);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
}

.hero-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* پیام‌های وضعیت (toast ساده) */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2.5rem));
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  z-index: 10050;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  max-width: 90vw;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast.error {
  border-color: var(--color-red);
}

.toast.success {
  border-color: #22c55e;
}

/* ================= پاسخگویی کامل ================= */
@media (max-width: 1024px) {
  .login-container {
    flex-direction: column-reverse;
  }

  .login-section {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    padding: 2.5rem 1.5rem;
    box-shadow: none;
    align-items: center;
  }

  .login-section > * {
    max-width: 380px;
  }

  .login-section::before {
    display: none;
  }

  .globe-section {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: 340px;
  }

  .hero-content {
    padding: 1.5rem 2rem;
    max-width: 90%;
    background: radial-gradient(ellipse at center, rgba(5,6,8,0.65) 0%, rgba(5,6,8,0.3) 60%, transparent 80%);
  }

  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .login-section {
    padding: 1.75rem 1.25rem;
  }

  .login-section > * {
    max-width: 100%;
  }

  .login-header h2 {
    font-size: 1.45rem;
  }

  .tab-btn {
    font-size: 0.8rem;
    padding: 0.6rem 0.35rem;
  }

  .hero-content {
    display: none;
  }

  .globe-section {
    min-height: 220px;
  }
}

/* ========== Forgot password modal ========== */
.forgot-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.forgot-modal.open {
  opacity: 1;
  visibility: visible;
}
.forgot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.forgot-modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card-bg, #121826);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  direction: rtl;
}
.forgot-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.forgot-modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.forgot-modal-close {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  padding: 4px 8px;
  border-radius: 8px;
}
.forgot-modal-close:hover { opacity: 1; background: rgba(148,163,184,.12); }
.forgot-desc {
  color: var(--text-muted, #94a3b8);
  font-size: .9rem;
  margin: 0 0 14px;
  line-height: 1.6;
}
.forgot-step .btn-submit { width: 100%; margin-top: 8px; }
.forgot-step .btn-link {
  display: inline-block;
  background: none;
  border: none;
  color: var(--primary, #3b82f6);
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.pass-strength { margin-top: 10px; }
.pass-strength-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(148,163,184,.2);
  overflow: hidden;
}
.pass-strength-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width .25s ease, background-color .25s ease;
}
.pass-strength-bar span.s1 { width: 25%; background: #ef4444; }
.pass-strength-bar span.s2 { width: 50%; background: #f59e0b; }
.pass-strength-bar span.s3 { width: 75%; background: #3b82f6; }
.pass-strength-bar span.s4 { width: 100%; background: #10b981; }
.pass-strength-label { margin-top: 6px; font-size: .8rem; color: #94a3b8; }
.pass-strength-label.s1 { color: #f87171; }
.pass-strength-label.s2 { color: #fbbf24; }
.pass-strength-label.s3 { color: #60a5fa; }
.pass-strength-label.s4 { color: #34d399; }

body.theme-light .forgot-modal-box,
html.theme-light .forgot-modal-box {
  background: #fff;
  border-color: rgba(0,0,0,.08);
}

/* ===== فراموشی رمز — کارت‌های تمیز ===== */
.forgot-method-block { margin: 8px 0 4px; }
.forgot-channel-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.forgot-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.3);
  background: rgba(15,23,42,.55);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.forgot-card:hover { border-color: rgba(96,165,250,.55); }
.forgot-card.is-active,
.forgot-card:has(input:checked) {
  border-color: #3b82f6;
  background: rgba(37,99,235,.22);
  box-shadow: 0 0 0 1px rgba(59,130,246,.35);
}
.forgot-card input[type="radio"] {
  margin: 3px 0 0;
  width: 18px;
  height: 18px;
  accent-color: #3b82f6;
  flex-shrink: 0;
}
.forgot-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  min-width: 0;
}
.forgot-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
}
.forgot-card-sub {
  font-size: .75rem;
  color: #94a3b8;
  line-height: 1.45;
}
.forgot-channel-box { display: none; }
.forgot-field-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.forgot-email-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.35);
  background: rgba(15,23,42,.6);
  color: #f1f5f9;
  font-size: .95rem;
  direction: ltr;
  text-align: left;
}
.forgot-email-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}
.forgot-hint {
  margin: 6px 0 0;
  font-size: .75rem;
  color: #94a3b8;
  line-height: 1.5;
}
.forgot-desc {
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: .9rem;
  color: #cbd5e1;
}
@media (max-width: 440px) {
  .forgot-channel-radios { grid-template-columns: 1fr; }
}


/* toast بالاتر از مودال فراموشی */
.toast {
  z-index: 10050 !important;
}

/* باکس موبایل در فراموشی — هم‌اندازه با باکس ایمیل */
#forgotMobileGroup .phone-wrapper {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.35);
  background: rgba(15,23,42,.6);
  overflow: hidden;
  min-height: 48px;
}
#forgotMobileGroup .phone-wrapper:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}
#forgotMobileGroup .phone-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px 0 12px;
  color: #94a3b8;
  font-size: .95rem;
  flex-shrink: 0;
}
#forgotMobileGroup .phone-prefix-input {
  width: 42px;
  min-width: 42px;
  max-width: 48px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px 4px !important;
  font-size: .95rem;
  color: #f1f5f9;
  text-align: center;
  direction: ltr;
  border-radius: 0 !important;
}
#forgotMobileGroup .phone-wrapper input[type="tel"] {
  flex: 1;
  min-width: 0;
  width: auto !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px 14px 12px 8px !important;
  font-size: .95rem;
  color: #f1f5f9;
  border-radius: 0 !important;
  direction: ltr;
  text-align: left;
}
#forgotMobileGroup .phone-wrapper input[type="tel"]:focus,
#forgotMobileGroup .phone-prefix-input:focus {
  outline: none;
  box-shadow: none !important;
}
#forgotEmailGroup .forgot-email-input {
  min-height: 48px;
}


/* ========== 2FA Login Box ========== */
.totp-login-box {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.35rem 0 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 112, 243, 0.35);
  background: linear-gradient(145deg, rgba(0, 112, 243, 0.08), rgba(0, 112, 243, 0.02));
  animation: totpFadeIn 0.28s ease;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.totp-login-box.is-visible,
.totp-login-box:not([hidden]) {
  display: flex;
}

.totp-login-box[hidden] {
  display: none !important;
}

@keyframes totpFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.totp-login-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue, #0070f3);
}

.totp-login-header svg {
  flex-shrink: 0;
}

.totp-code-input {
  letter-spacing: 0.35em;
  font-size: 1.15rem !important;
  font-weight: 600;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* فرم پسورد وقتی 2FA باز است فشرده‌تر بماند */
#passwordForm.totp-active {
  gap: 0.7rem;
}
#passwordForm.totp-active .form-actions {
  margin-top: 0.15rem;
}
#passwordForm.totp-active .btn-submit {
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .login-container {
    height: auto;
    min-height: 100vh;
    flex-direction: column;
  }
  .login-section {
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow-y: visible;
    padding: 1.5rem 1.15rem 2rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 1.15rem 0.9rem 1.75rem;
  }
  .totp-login-box {
    padding: 0.65rem 0.75rem;
    margin-top: 0.25rem;
  }
  .totp-code-input {
    font-size: 1.05rem !important;
    letter-spacing: 0.25em;
  }
  .login-header h2 {
    font-size: 1.15rem;
  }
  .login-header p {
    font-size: 0.8rem;
  }
}
