.auth-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(24px + env(safe-area-inset-top, 0px)) calc(16px + env(safe-area-inset-right, 0px))
    calc(24px + env(safe-area-inset-bottom, 0px)) calc(16px + env(safe-area-inset-left, 0px));
}
.auth-box {
  width: 100%;
  max-width: 400px;
  min-width: 0;
  padding: 28px 24px;
}
.auth-box .logo {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.auth-box .logo .dot { color: var(--accent); }
.auth-box .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.biometric-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.biometric-btn .icon { font-size: 22px; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  margin: 16px 0;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-box form { display: flex; flex-direction: column; }
.auth-submit { width: 100%; padding: 13px; margin-top: 6px; }
.totp-input {
  text-align: center;
  font-size: 26px !important;
  letter-spacing: 8px;
  font-variant-numeric: tabular-nums;
}
.auth-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 18px;
}
