/* ================================================================
   DOCTOREASE — LIQUID GLASS LOGIN
   Based on Dr.Ease AI Liquid Glass v3
   ================================================================ */

:root {
  --font: "Inter", "Sarabun", -apple-system, BlinkMacSystemFont, sans-serif;
  --accent-h: 262;
  --accent-s: 83%;
  --accent-l: 58%;
  --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
  --accent-soft: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.12);
  --accent-glow: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.3);
  --scene-tint: hsla(var(--accent-h), 30%, 50%, 0.15);
  --scene-blur: 18px;
}

/* ---- Palettes ---- */
[data-palette="surgical-blue"] {
  --accent-h: 211;
  --accent-s: 90%;
  --accent-l: 48%;
  --dot-color: #1976d2;
}
[data-palette="amethyst"] {
  --accent-h: 262;
  --accent-s: 83%;
  --accent-l: 58%;
  --dot-color: #7c4dff;
}
[data-palette="eucalyptus"] {
  --accent-h: 168;
  --accent-s: 55%;
  --accent-l: 42%;
  --dot-color: #40a89c;
}
[data-palette="sage"] {
  --accent-h: 145;
  --accent-s: 35%;
  --accent-l: 48%;
  --dot-color: #5d9a6e;
}
[data-palette="blush-marble"] {
  --accent-h: 340;
  --accent-s: 65%;
  --accent-l: 55%;
  --dot-color: #d4618c;
}

/* ---- LIGHT ---- */
[data-theme="light"] {
  --bg: #f2f3f7;
  --glass-bg: rgba(255, 255, 255, 0.42);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shine: rgba(255, 255, 255, 0.9);
  --glass-shadow-1: rgba(0, 0, 0, 0.08);
  --glass-shadow-2: rgba(0, 0, 0, 0.04);
  --input-bg: rgba(255, 255, 255, 0.55);
  --input-border: rgba(0, 0, 0, 0.07);
  --text-1: #1a1a1f;
  --text-2: #6e6e73;
  --text-3: #aeaeb2;
  --err-bg: rgba(255, 59, 48, 0.07);
  --err-border: rgba(255, 59, 48, 0.18);
  --err-text: #ff3b30;
  --scene-overlay: rgba(240, 242, 247, 0.15);
}

/* ---- DARK ---- */
[data-theme="dark"] {
  --bg: #050507;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shine: rgba(255, 255, 255, 0.1);
  --glass-shadow-1: rgba(0, 0, 0, 0.5);
  --glass-shadow-2: rgba(0, 0, 0, 0.3);
  --input-bg: rgba(255, 255, 255, 0.06);
  --input-border: rgba(255, 255, 255, 0.07);
  --text-1: #f5f5f7;
  --text-2: #a1a1a6;
  --text-3: #48484a;
  --err-bg: rgba(255, 69, 58, 0.1);
  --err-border: rgba(255, 69, 58, 0.2);
  --err-text: #ff6961;
  --scene-overlay: rgba(5, 5, 7, 0.4);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  overflow: hidden;
  transition:
    background 0.6s,
    color 0.4s;
}

/* =============================================================
   SCENE — Background
   ============================================================= */
.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(var(--scene-blur)) saturate(1.2) brightness(1.05);
  transform: scale(1.08);
  transition:
    background-image 0.8s ease,
    filter 0.6s;
}

[data-theme="dark"] .scene {
  filter: blur(var(--scene-blur)) saturate(0.8) brightness(0.4);
}

/* Palette-specific scenes — สลับพื้นหลัง amethyst <-> surgical-blue */
[data-palette="amethyst"] .scene {
  background-image: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&q=80&auto=format");
}
[data-palette="surgical-blue"] .scene {
  background-image: url("https://images.unsplash.com/photo-1584451049700-ec9b394f3805?w=1920&q=80&auto=format");
}
[data-palette="eucalyptus"] .scene {
  background-image: url("https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1920&q=80&auto=format");
}
[data-palette="sage"] .scene {
  background-image: url("https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=1920&q=80&auto=format");
}
[data-palette="blush-marble"] .scene {
  background-image: url("https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1920&q=80&auto=format");
}

/* Color tint overlay */
.scene-tint {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: var(--scene-overlay);
  transition: background 0.6s;
}

/* Subtle light refraction */
.scene-refraction {
  position: fixed;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      ellipse 60% 50% at 30% 20%,
      hsla(var(--accent-h), 40%, 80%, 0.08),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 70% 80%,
      hsla(calc(var(--accent-h)+40), 35%, 75%, 0.06),
      transparent 50%
    );
  pointer-events: none;
  transition: background 0.6s;
}

/* =============================================================
   LAYOUT
   ============================================================= */
.stage {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

/* =============================================================
   GLASS CARD
   ============================================================= */
.glass {
  width: 100%;
  max-width: 400px;
  border-radius: 32px;
  padding: 44px 38px 36px;
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(60px) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(60px) saturate(1.8) brightness(1.05);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 24px 80px var(--glass-shadow-1),
    0 8px 32px var(--glass-shadow-2),
    inset 0 1px 0 var(--glass-shine),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    background 0.5s,
    border-color 0.5s,
    box-shadow 0.5s;
}

.glass::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 10%;
  right: 10%;
  height: 80%;
  background: radial-gradient(
    ellipse 100% 60% at 50% 0%,
    var(--glass-shine),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.5;
}

.glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 10%,
    hsla(280, 60%, 70%, 0.3) 25%,
    hsla(200, 70%, 65%, 0.4) 50%,
    hsla(320, 60%, 70%, 0.3) 75%,
    transparent 90%
  );
  border-radius: 32px 32px 0 0;
}

@keyframes glassIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* =============================================================
   LOGO — "Dr." text + logo image
   ============================================================= */
.logo {
  text-align: center;
  margin-bottom: 36px;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.logo-combo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.logo-img {
  max-width: 220px;
  height: auto;
  transition: filter 0.5s ease;
}

/* Logo color per palette — base logo สีม่วง ~262° → hue-rotate ไปยัง target hue */
[data-palette="amethyst"] .logo-img {
  filter: none;
} /* 262 = เดิม */
[data-palette="surgical-blue"] .logo-img {
  filter: hue-rotate(-51deg) saturate(1.1);
} /* 262→211 */
[data-palette="eucalyptus"] .logo-img {
  filter: hue-rotate(-94deg) saturate(0.85);
} /* 262→168 */
[data-palette="sage"] .logo-img {
  filter: hue-rotate(-117deg) saturate(0.7);
} /* 262→145 */
[data-palette="blush-marble"] .logo-img {
  filter: hue-rotate(78deg) saturate(1.1);
} /* 262→340 */

/* Dark mode */
[data-theme="dark"] .logo-img {
  filter: brightness(0) invert(1);
}
[data-theme="dark"] .logo-dr {
  color: #6a7282;
}

/* =============================================================
   ERROR
   ============================================================= */
.err {
  background: var(--err-bg);
  border: 1px solid var(--err-border);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.err p {
  color: var(--err-text);
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.err ul {
  color: var(--err-text);
  font-size: 0.75rem;
  margin: 6px 0 0 23px;
  padding: 0;
  list-style: none;
}
@keyframes shake {
  10%,
  90% {
    transform: translateX(-1px);
  }
  20%,
  80% {
    transform: translateX(2px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-3px);
  }
  40%,
  60% {
    transform: translateX(3px);
  }
}

/* =============================================================
   FORM
   ============================================================= */
.glass-form {
  position: relative;
  z-index: 1;
}
.field {
  margin-bottom: 16px;
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.field:nth-child(1) {
  animation-delay: 0.2s;
}
.field:nth-child(2) {
  animation-delay: 0.26s;
}
.glass-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 15px;
  width: 17px;
  height: 17px;
  color: var(--text-3);
  pointer-events: none;
  transition: color 0.3s;
  z-index: 2;
}

.glass-input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 44px;
  border-radius: 14px;
  border: 1.5px solid var(--input-border);
  background: var(--input-bg);
  backdrop-filter: blur(8px);
  color: var(--text-1);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-appearance: none;
}
.glass-input::placeholder {
  color: var(--text-3);
  font-weight: 400;
}
.glass-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.glass-input:focus ~ .input-icon {
  color: var(--accent);
}

.pw-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  z-index: 2;
}
.pw-toggle:hover {
  color: var(--text-2);
}
.pw-toggle svg {
  width: 17px;
  height: 17px;
}

/* =============================================================
   OTP SECTION (inside form)
   ============================================================= */
.otp-section {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.otp-section .otp-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--err-text);
  margin-bottom: 10px;
  text-align: center;
}
.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.otp-input {
  width: 40px;
  height: 48px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  background: var(--input-bg);
  backdrop-filter: blur(8px);
  color: var(--text-1);
  font-family: var(--font);
  outline: none;
  transition: all 0.3s;
}
.otp-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* =============================================================
   SUBMIT BUTTON
   ============================================================= */
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  position: relative;
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.btn-go {
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 28px var(--accent-glow);
  animation: glowBreath 4s ease-in-out infinite;
  z-index: 2;
}
.btn-go svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  stroke-width: 2.5;
}
.btn-go::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3),
    transparent 60%
  );
  pointer-events: none;
}
.btn-go:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 40px var(--accent-glow);
  filter: brightness(1.08);
}
.btn-go:hover svg {
  transform: translateX(2px);
}
.btn-go:active {
  transform: scale(0.94);
  box-shadow: 0 3px 14px var(--accent-glow);
}

.btn-ring {
  display: none;
}

@keyframes glowBreath {
  0%,
  100% {
    box-shadow: 0 6px 28px var(--accent-glow);
  }
  50% {
    box-shadow:
      0 8px 40px var(--accent-glow),
      0 0 60px var(--accent-glow);
  }
}

.btn-label {
  margin-top: 12px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s;
}
.btn-wrap:hover .btn-label {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   FOOTER & DEMO LINK
   ============================================================= */
.foot {
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}
.foot p {
  font-size: 0.65rem;
  color: var(--text-3);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.demo-link {
  text-align: center;
  margin-top: 16px;
  position: relative;
  z-index: 1;
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.demo-link a {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.demo-link a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* =============================================================
   CONTROLS — bottom right
   ============================================================= */
.ctrls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: glassIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.palette-bar {
  display: flex;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .palette-bar {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.07);
}

.pal-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.pal-dot:hover {
  transform: scale(1.25);
}
.pal-dot.on {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.12);
}
[data-theme="dark"] .pal-dot.on {
  border-color: rgba(255, 255, 255, 0.5);
}

.pal-dot::after {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}
.pal-dot:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  transition: all 0.3s;
}
[data-theme="dark"] .theme-btn {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}
.theme-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-1);
  transform: scale(1.05);
}
.theme-btn svg {
  width: 15px;
  height: 15px;
}

[data-theme="light"] .ic-moon {
  display: none;
}
[data-theme="dark"] .ic-sun {
  display: none;
}

/* =============================================================
   SPINNER OVERLAY
   ============================================================= */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
[data-theme="dark"] .spinner-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}
.spinner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow:
    28px 0px 0 0 hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.2),
    22.7px 16.5px 0 0
      hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.4),
    8.68px 26.6px 0 0
      hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.6),
    -8.68px 26.6px 0 0
      hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.8),
    -22.7px 16.5px 0 0 var(--accent);
  animation: spinnerRotate 1s infinite linear;
}
@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}
.d-none {
  display: none !important;
}

/* =============================================================
   VERIFY EMAIL MODAL (glass style)
   ============================================================= */
.glass-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease both;
}
.glass-modal-overlay.show {
  display: flex;
}

.glass-modal {
  width: 90%;
  max-width: 420px;
  border-radius: 28px;
  padding: 36px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(60px) saturate(1.8);
  -webkit-backdrop-filter: blur(60px) saturate(1.8);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 24px 80px var(--glass-shadow-1),
    0 8px 32px var(--glass-shadow-2);
  text-align: center;
  position: relative;
  animation: glassIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.glass-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  transition: color 0.2s;
}
.glass-modal-close:hover {
  color: var(--text-1);
}

.glass-modal h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}
.glass-modal .modal-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 24px;
}
.glass-modal .otp-warning {
  color: var(--err-text);
  font-size: 0.75rem;
  margin-bottom: 20px;
  display: block;
}

.glass-modal-icons {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.glass-modal-icons img {
  border-radius: 12px;
}

.btn-verify {
  padding: 12px 36px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-verify:hover {
  filter: brightness(1.08);
  transform: scale(1.02);
}

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

/* Alert override for error block */
.glass-alert {
  background: var(--err-bg);
  border: 1px solid var(--err-border);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  color: var(--err-text);
  font-size: 0.8rem;
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.glass-alert strong {
  font-weight: 600;
}
.glass-alert ul {
  margin: 6px 0 0 16px;
  padding: 0;
  list-style: none;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 640px) {
  .glass {
    padding: 32px 24px 28px;
    border-radius: 26px;
    max-width: 100%;
  }
  .ctrls {
    bottom: 16px;
    gap: 6px;
  }
  .palette-bar {
    gap: 5px;
    padding: 6px 10px;
  }
  .pal-dot {
    width: 16px;
    height: 16px;
  }
  .theme-btn {
    width: 34px;
    height: 34px;
  }
  .logo-img {
    max-width: 220px;
  }
  .logo-dr {
    font-size: 2rem;
  }
  .btn-go {
    width: 58px;
    height: 58px;
  }
  .btn-go svg {
    width: 20px;
    height: 20px;
  }
  .btn-label {
    font-size: 0.6rem;
  }
  .otp-input {
    width: 36px;
    height: 44px;
    font-size: 1rem;
  }
}

/* Preload hint */
.preload-scenes {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
