/* ============================================================
   COMMERCELY — AUTH STYLES
   Covers: Login, Forgot Password, Register (4-step)
   Version: 1.0
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Neutrals */
  --bg:   #020617;
  --s9:   #0f172a;
  --s85:  #131f30;
  --s8:   #1e293b;
  --s75:  #253047;
  --s7:   #334155;
  --s6:   #475569;
  --s5:   #64748b;
  --s4:   #94a3b8;
  --s3:   #cbd5e1;
  --w:    #ffffff;

  /* Brand */
  --am:   #f59e0b;
  --al:   #fbbf24;
  --ad:   #d97706;
  --cyan: #06b6d4;

  /* Semantic */
  --g:    #4ade80;
  --r:    #f87171;
  --b:    #60a5fa;
  --p:    #c084fc;
  --t:    #34d399;
  --o:    #fb923c;

  /* Typography */
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --gap-xs: 6px;
  --gap-sm: 10px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 40px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 9px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 999px;
}

html, body {
  min-height: 100vh;
  background: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  color: var(--w);
  -webkit-font-smoothing: antialiased;
}

/* ── SCREEN SWITCHER ──────────────────────────────────────── */
.scr {
  display: none;
  min-height: 100vh;
}
.scr.on {
  display: block;
  animation: screen-in 0.28s ease;
}
@keyframes screen-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── AUTH SHELL ───────────────────────────────────────────── */
.auth {
  display: grid;
  grid-template-columns: 1fr 504px;
  min-height: 100vh;
}

@media (max-width: 860px) {
  .auth {
    grid-template-columns: 1fr;
  }
  .auth-left {
    display: none;
  }
  .auth-right {
    padding: 36px 24px;
  }
}

/* ── AUTH LEFT PANEL ──────────────────────────────────────── */
.auth-left {
  background: var(--s9);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Amber glow orb */
.auth-left::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.14) 0%, transparent 65%);
  top: -120px;
  left: -100px;
  pointer-events: none;
}

/* Second accent orb */
.auth-left-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,.07) 0%, transparent 65%);
  bottom: 60px;
  right: -80px;
  pointer-events: none;
}

.auth-left-content {
  position: relative;
  z-index: 1;
}

/* ── BRAND MARK ───────────────────────────────────────────── */
.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--gap-xl);
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: var(--cyan);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--bg);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.2px;
}

/* ── LEFT PANEL HEADLINE ──────────────────────────────────── */
.auth-headline {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--w);
}

.auth-headline em {
  font-style: normal;
  color: var(--cyan);
}

.auth-tagline {
  font-size: 17px;
  color: var(--s4);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 40px;
}

/* ── FEATURE PILLS ────────────────────────────────────────── */
.auth-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.auth-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 13.5px;
  color: var(--s3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── TESTIMONIAL CARD ─────────────────────────────────────── */
.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  max-width: 380px;
  backdrop-filter: none;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--s3);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--w);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 11.5px;
  color: var(--s5);
}

/* ── LEFT PANEL STEP LIST (forgot / register) ─────────────── */
.auth-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.auth-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--s4);
}

.auth-step-num {
  font-size: 18px;
  color: var(--cyan);
  line-height: 1;
  flex-shrink: 0;
}

/* ── AUTH RIGHT PANEL ─────────────────────────────────────── */
.auth-right {
  background: var(--bg);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  position: relative;
}

/* Subtle right panel texture */
.auth-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(245,158,11,.04) 0%, transparent 50%);
  pointer-events: none;
}

.auth-right > * {
  position: relative;
  z-index: 1;
}

/* ── FORM HEADER ──────────────────────────────────────────── */
.form-header {
  margin-bottom: 36px;
}

.form-title {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--w);
}

.form-subtitle {
  font-size: 15px;
  color: var(--s5);
}

/* ── BACK LINK ────────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--s5);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font);
  margin-bottom: 28px;
  padding: 0;
  transition: color 0.15s;
}
.back-link:hover { color: var(--s3); }
.back-link::before { content: '←'; }

/* ── ERROR BANNER ─────────────────────────────────────────── */
.err-banner {
  display: none;
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.2);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--r);
  margin-bottom: 16px;
  align-items: center;
  gap: 8px;
}
.err-banner.on { display: flex; }
.err-banner-icon { flex-shrink: 0; font-size: 14px; }

/* ── FORM GROUPS ──────────────────────────────────────────── */
.fg {
  margin-bottom: 22px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.fl {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--s4);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.fl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.fl-row .fl { margin-bottom: 0; }

.req { color: var(--r); margin-left: 2px; }

/* ── INPUTS ───────────────────────────────────────────────── */
.fi, .sel {
  width: 100%;
  background: var(--s8);
  border: 1.5px solid var(--s7);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--w);
  outline: none;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.4;
}

.fi::placeholder { color: var(--s6); }

.fi:hover, .sel:hover {
  border-color: var(--s6);
}

.fi:focus, .sel:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}

.fi.err {
  border-color: var(--r);
}
.fi.err:focus {
  border-color: var(--r);
  box-shadow: 0 0 0 3px rgba(248,113,113,.12);
}

/* ── SELECT ───────────────────────────────────────────────── */
.sel {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.sel option { background: var(--s8); color: var(--w); }

/* ── PASSWORD WRAPPER ─────────────────────────────────────── */
.pw-wrap {
  position: relative;
}
.pw-wrap .fi {
  padding-right: 44px;
}
.pw-eye {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--s5);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 15px;
  transition: color 0.15s;
}
.pw-eye:hover { color: var(--s3); }

/* ── INLINE PREFIX (store URL) ────────────────────────────── */
.input-prefix-wrap {
  display: flex;
}
.input-prefix {
  background: var(--s75);
  border: 1.5px solid var(--s7);
  border-right: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  padding: 12px 13px;
  font-size: 13px;
  color: var(--s5);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.input-prefix + .fi {
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ── FIELD ERROR MESSAGE ──────────────────────────────────── */
.ferr {
  font-size: 12px;
  color: var(--r);
  margin-top: 5px;
  display: none;
}
.ferr.on { display: block; }

/* ── FIELD HINT ───────────────────────────────────────────── */
.fhint {
  font-size: 12px;
  color: var(--s5);
  margin-top: 5px;
  line-height: 1.5;
}

/* ── PASSWORD STRENGTH ────────────────────────────────────── */
.pw-strength-bar {
  height: 3px;
  background: var(--s8);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-top: 8px;
}
.pw-strength-fill {
  height: 100%;
  border-radius: var(--r-full);
  transition: width 0.3s ease;
}
.pw-strength-label {
  font-size: 11px;
  color: var(--cyan);
  margin-top: 4px;
}

/* ── CHECKBOX ROW ─────────────────────────────────────────── */
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 24px;
}
.check-row input[type="checkbox"] {
  accent-color: var(--cyan);
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.check-row label {
  font-size: 14px;
  color: var(--s4);
  line-height: 1.5;
  cursor: pointer;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.15s;
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* Primary */
.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  font-weight: 700;
}
.btn-primary:hover { background: var(--cyan); }
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245,158,11,.3);
}

/* Secondary */
.btn-secondary {
  background: var(--s8);
  color: var(--s3);
  border: 1.5px solid var(--s7);
}
.btn-secondary:hover { background: var(--s75); border-color: var(--s6); }

/* Full width */
.btn-full { width: 100%; }

/* Loading state */
.btn-loading {
  gap: 10px;
  pointer-events: none;
}

/* ── SPINNER ──────────────────────────────────────────────── */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(2,6,23,.25);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── LINK BUTTON ──────────────────────────────────────────── */
.btn-link {
  background: none;
  border: none;
  color: var(--cyan);
  font-size: inherit;
  font-family: var(--font);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.btn-link:hover { color: var(--cyan); text-decoration: underline; }

/* ── OR DIVIDER ───────────────────────────────────────────── */
.or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: var(--s6);
  font-size: 13px;
}
.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
}

/* ── FORM FOOTER TEXT ─────────────────────────────────────── */
.form-footer {
  text-align: center;
  font-size: 14px;
  color: var(--s5);
  margin-top: 18px;
}

/* ── INFO BOX ─────────────────────────────────────────────── */
.info-box {
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--s4);
  line-height: 1.6;
  margin-top: 28px;
}
.info-box strong { color: var(--cyan); }

/* ── REGISTER STEP INDICATOR ──────────────────────────────── */
.steps {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

.step {
  display: flex;
  align-items: center;
  gap: 7px;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s;
}
.step-dot.done {
  background: var(--cyan);
  color: var(--bg);
}
.step-dot.now {
  background: var(--b);
  color: var(--bg);
  box-shadow: 0 0 0 3px rgba(96,165,250,.2);
}
.step-dot.next {
  background: var(--s8);
  border: 1.5px solid var(--s7);
  color: var(--s5);
}

.step-label {
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.step-label.done  { color: var(--cyan); }
.step-label.now   { color: var(--w); }
.step-label.next  { color: var(--s5); }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--s7);
  margin: 0 8px;
  min-width: 16px;
  transition: background 0.3s;
}
.step-line.done { background: var(--cyan); }

/* ── REGISTER LEFT PANEL PROGRESS ────────────────────────── */
.reg-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--s5);
  margin-bottom: 6px;
}
.reg-progress-pct {
  color: var(--cyan);
  font-weight: 600;
}
.progress-bar {
  height: 4px;
  background: var(--s8);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 26px;
}
.progress-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--ad), var(--cyan));
  transition: width 0.4s ease;
}

/* ── REGISTER CHECKLIST (left panel) ─────────────────────── */
.reg-checks {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.reg-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.reg-check-dot.done   { background: var(--g);  color: var(--bg); }
.reg-check-dot.active { background: var(--b);  color: var(--bg); }
.reg-check-dot.next   { background: var(--s7); color: var(--s5); }

.reg-check-label {
  font-size: 13px;
  transition: color 0.2s;
}
.reg-check-label.done   { color: var(--cyan); }
.reg-check-label.active { color: var(--w); }
.reg-check-label.next   { color: var(--s5); }

/* ── PLAN CARDS ───────────────────────────────────────────── */
.plans {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.plan-card {
  background: var(--s8);
  border: 2px solid var(--s7);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.plan-card:hover { border-color: var(--s5); }
.plan-card.on {
  border-color: var(--cyan);
  background: rgba(245,158,11,.04);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  border-radius: var(--r-full);
  padding: 2px 12px;
  white-space: nowrap;
  letter-spacing: 0.4px;
}

.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.plan-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--w);
}
.plan-card.on .plan-name { color: var(--cyan); }

.plan-price {
  text-align: right;
}
.plan-price-amount {
  font-weight: 800;
  font-size: 20px;
  color: var(--w);
  letter-spacing: -0.5px;
}
.plan-card.on .plan-price-amount { color: var(--cyan); }
.plan-price-period {
  font-size: 12px;
  color: var(--s5);
}

.plan-desc {
  font-size: 12.5px;
  color: var(--s5);
  margin-bottom: 10px;
}

.plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.plan-tag {
  font-size: 11px;
  border-radius: var(--r-full);
  padding: 2px 9px;
  background: var(--s75);
  color: var(--s4);
}
.plan-card.on .plan-tag {
  background: rgba(245,158,11,.12);
  color: var(--cyan);
}

/* ── OTP INPUTS ───────────────────────────────────────────── */
.otp-row {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-bottom: 18px;
}

.otp-box {
  width: 48px;
  height: 56px;
  background: var(--s8);
  border: 1.5px solid var(--s7);
  border-radius: var(--r-lg);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--w);
  outline: none;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  caret-color: var(--cyan);
}
.otp-box:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.otp-box.err {
  border-color: var(--r);
  box-shadow: 0 0 0 3px rgba(248,113,113,.12);
}

/* ── OTP SUCCESS / ERROR ──────────────────────────────────── */
.otp-err {
  display: none;
  font-size: 12.5px;
  color: var(--r);
  text-align: center;
  margin-bottom: 12px;
}
.otp-err.on { display: block; }

/* ── FORGOT SUCCESS STATE ─────────────────────────────────── */
.success-state {
  display: none;
  text-align: center;
  padding: 10px 0;
}
.success-state.on { display: block; }

.success-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(74,222,128,.1);
  border: 2px solid rgba(74,222,128,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
}

.success-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  color: var(--w);
}

.success-sub {
  font-size: 13.5px;
  color: var(--s5);
  margin-bottom: 4px;
}

.success-email {
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 22px;
}

.success-note {
  font-size: 13px;
  color: var(--s5);
  line-height: 1.65;
  margin-bottom: 26px;
}

.success-resend {
  font-size: 13px;
  color: var(--s5);
  margin-top: 13px;
}

/* ── OTP CENTRE LAYOUT ────────────────────────────────────── */
.otp-center {
  text-align: center;
  padding: 10px 0;
}
.otp-email-sent {
  font-size: 13.5px;
  color: var(--s5);
  margin-bottom: 4px;
}
.otp-email-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 22px;
}
.otp-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(245,158,11,.1);
  border: 2px solid rgba(245,158,11,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
}
.otp-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  color: var(--w);
}
.otp-resend {
  font-size: 13px;
  color: var(--s5);
  margin-top: 12px;
}
.otp-back {
  font-size: 13px;
  color: var(--s5);
  margin-top: 10px;
}
.otp-demo-hint {
  margin-top: 20px;
  padding: 11px 14px;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: var(--r-md);
  font-size: 12px;
  color: var(--s4);
  text-align: left;
  line-height: 1.55;
}
.otp-demo-hint strong { color: var(--cyan); }

/* ── STEP FORM HEADING ────────────────────────────────────── */
.step-heading {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
  color: var(--w);
}
.step-subheading {
  font-size: 13px;
  color: var(--s5);
  margin-bottom: 22px;
}

/* ── SPLIT BUTTON ROW ─────────────────────────────────────── */
.btn-row {
  display: flex;
  gap: 10px;
}
.btn-row .btn-secondary { flex: 1; }
.btn-row .btn-primary   { flex: 2; }

/* ── UTILITY ──────────────────────────────────────────────── */
.text-muted   { color: var(--s5); }
.text-accent  { color: var(--cyan); }
.text-danger  { color: var(--r); }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }

/* ── REG STEP VISIBILITY ─────────────────────── */
.reg-step {
  display: none;
}

/* ── PW STRENGTH MODIFIERS ───────────────────── */
.pw-strength-weak   { width: 25%; background: var(--r); }
.pw-strength-medium { width: 55%; background: var(--o); }
.pw-strength-strong { width: 75%; background: var(--cyan); }
.pw-strength-great  { width: 100%; background: var(--g); }

/* ── TOAST CONTAINER ─────────────────────────── */
.toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}


