/* ============================================================
   Tryvio — Auth CSS (Login & Register)
   File: static/css/auth.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,700;12..96,800;12..96,900&family=Outfit:wght@400;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Outfit', sans-serif;
  background: #f5f7fb;
  color: #1a2332;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ── LEFT PANEL ── */
.auth-left {
  background: #0b1c3d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.auth-left::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

/* Brand */
.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.auth-logo {
  width: 38px; height: 38px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #00c9a7;
  flex-shrink: 0;
}
.auth-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.auth-brand-name span { color: #00c9a7; }

/* Left content */
.auth-left-content {
  position: relative;
  z-index: 2;
}
.auth-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #00c9a7;
  letter-spacing: .4px;
  margin-bottom: 18px;
}
.auth-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00c9a7;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.auth-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.auth-title span { color: #00c9a7; }

.auth-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 28px;
}

.auth-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.auth-feat-icon {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Stats */
.auth-stats {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.auth-stat {
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 16px;
}
.auth-stat-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #00c9a7;
  line-height: 1;
}
.auth-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

/* ── RIGHT PANEL ── */
.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  background: #f5f7fb;
}
.auth-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 420px;
}

/* ── TABS ── */
.auth-tabs {
  display: flex;
  gap: 0;
  background: #f0f4f9;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 9px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  color: #8898aa;
}
.auth-tab.active {
  background: #fff;
  color: #1a2332;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.07);
}

/* ── HEADER ── */
.auth-header {
  margin-bottom: 24px;
  text-align: center;
}
.auth-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1a2332;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.auth-header p { font-size: 14px; color: #8898aa; }

/* ── ALERTS ── */
.auth-alert {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.auth-alert-error {
  background: #fef2f2;
  border: 1px solid rgba(248,81,73,0.2);
  color: #c0392b;
}
.auth-alert-success {
  background: #f0fdf4;
  border: 1px solid rgba(34,197,94,0.2);
  color: #15803d;
}

/* ── FORM FIELDS ── */
.auth-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.auth-field label {
  font-size: 12px;
  font-weight: 700;
  color: #4a5568;
  letter-spacing: .3px;
}
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-input-icon {
  position: absolute;
  left: 11px;
  font-size: 15px;
  color: #c8d0dc;
  pointer-events: none;
}
.auth-input-wrap input {
  width: 100%;
  padding: 11px 11px 11px 36px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  color: #1a2332;
  font-family: 'Outfit', sans-serif;
  outline: none;
  background: #fff;
  transition: border-color .15s;
}
.auth-input-wrap input:focus {
  border-color: #00c9a7;
  box-shadow: 0 0 0 3px rgba(0,201,167,0.1);
}
.auth-input-wrap input::placeholder { color: #c8d0dc; }
.auth-eye-btn {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  padding: 2px;
  color: #c8d0dc;
}

/* ── PASSWORD STRENGTH ── */
.auth-strength-bar {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.auth-sb {
  flex: 1;
  height: 3px;
  border-radius: 100px;
  background: #e8ecf2;
  transition: background .3s;
}
.auth-sb.weak   { background: #f87171; }
.auth-sb.medium { background: #fbbf24; }
.auth-sb.strong { background: #00c9a7; }
.auth-field-msg {
  font-size: 11px;
  font-weight: 600;
  color: #c8d0dc;
  margin-top: 4px;
}

/* ── FORGOT LINK ── */
.auth-forgot {
  font-size: 12px;
  font-weight: 600;
  color: #00c9a7;
  text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }

/* ── SUBMIT BUTTON ── */
.auth-btn-submit {
  width: 100%;
  padding: 13px;
  background: #0b1c3d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all .18s;
  margin-bottom: 16px;
  letter-spacing: -.2px;
}
.auth-btn-submit:hover { background: #162d6e; }

/* ── TERMS ── */
.auth-terms {
  font-size: 12px;
  color: #8898aa;
  text-align: center;
  line-height: 1.6;
  margin-top: 12px;
}
.auth-terms a { color: #00c9a7; text-decoration: none; font-weight: 700; }

/* ── SWITCH LINK ── */
.auth-switch {
  text-align: center;
  font-size: 13px;
  color: #8898aa;
  margin-top: 16px;
}
.auth-switch a { color: #00c9a7; font-weight: 700; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 24px 16px; min-height: 100vh; }
  .auth-field-grid { grid-template-columns: 1fr; }
}

.auth-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;        /* try = putih di background gelap */
  letter-spacing: -.3px;
}
/* ── CAPTCHA (django-simple-captcha) ── */
.auth-captcha-field { margin-bottom: 18px; }
.captcha-hint { font-size:11px; font-weight:400; color:#94a3b8; }

/* Wrapper soal: gambar | input jawaban | tombol refresh — semua dalam satu kotak */
.auth-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px 8px 6px 8px;
  transition: border-color .15s, box-shadow .15s;
}
.auth-captcha-wrap:focus-within {
  border-color: #00c9a7;
  box-shadow: 0 0 0 3px rgba(0,201,167,0.1);
}

/* Gambar soal matematika */
.auth-captcha-wrap img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  border-radius: 6px;
  background: #f8fafc;
  display: block;
}

/* Input jawaban — tanpa border sendiri, menyatu dengan wrap */
.auth-captcha-wrap input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: #1a2332;
  min-width: 60px;
  padding: 4px 0;
}
.auth-captcha-wrap input[type="text"]::placeholder {
  color: #b0bec5;
  font-size: 13px;
}

/* Tombol refresh — di dalam kotak, dipisah garis tipis */
.captcha-refresh-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-left: 1.5px solid #e2e8f0;
  border-radius: 0;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  transition: color .15s;
}
.captcha-refresh-btn:hover {
  color: #00c9a7;
}

/* ── REGISTER GAMIFIED ─────────────────────────────── */
.reg-body {
  background: #f4f7f6;
  font-family: 'Outfit', sans-serif;
  margin: 0;
}
.reg-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.reg-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 4px 20px rgba(13, 27, 46, .06);
}

/* Progress 5 segmen */
.reg-progress {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}
.reg-seg {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #e1f5ee;
  transition: background .25s;
}
.reg-seg.on { background: #1D9E75; }

/* Header */
.reg-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.reg-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e1f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.reg-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #14233c;
}
.reg-sub {
  font-size: 13px;
  color: #7b8a99;
}

/* Inputs */
.reg-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: #14233c;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.reg-input:focus {
  border-color: #00c9a7;
  box-shadow: 0 0 0 3px rgba(0, 201, 167, .1);
}
.reg-input::placeholder { color: #b0bec5; }
.reg-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Field dengan status inline */
.reg-field-wrap { position: relative; }
.reg-uname-status {
  position: absolute;
  right: 14px;
  top: 13px;
  font-size: 12px;
  font-weight: 600;
  color: #7b8a99;
  pointer-events: none;
}
.reg-uname-status.good { color: #0F6E56; }
.reg-uname-status.bad  { color: #c0392b; }
.reg-uname-status.warn { color: #b9770e; }
.reg-eye {
  position: absolute;
  right: 10px;
  top: 9px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  padding: 4px;
}

/* Meteran kekuatan password */
.reg-strength {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: -2px 2px 10px;
}
.reg-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e9eef2;
  transition: background .2s;
}
.reg-strength-label {
  font-size: 11px;
  color: #7b8a99;
  min-width: 38px;
  text-align: right;
}

/* Tombol submit ala Duolingo */
.reg-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: #1D9E75;
  border-bottom: 4px solid #0F6E56;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: filter .15s, transform .05s;
}
.reg-submit:hover:not(:disabled) { filter: brightness(1.06); }
.reg-submit:active:not(:disabled) {
  transform: translateY(2px);
  border-bottom-width: 2px;
}
.reg-submit:disabled {
  background: #cfd8dc;
  border-bottom-color: #b0bec5;
  cursor: not-allowed;
}

.reg-switch {
  text-align: center;
  font-size: 13px;
  color: #7b8a99;
  margin-top: 16px;
}
.reg-switch a {
  color: #0F6E56;
  font-weight: 700;
  text-decoration: none;
}
.reg-switch a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .reg-card { padding: 22px 18px; }
}

/* ── REGISTER v2 — polish ──────────────────────────── */
.reg-page { position: relative; overflow: hidden; }
.reg-deco {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 158, 117, .14);
  pointer-events: none;
}
.reg-deco-1 { width: 380px; height: 380px; top: -120px; right: -100px; }
.reg-deco-1::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 158, 117, .09);
}
.reg-deco-2 { width: 260px; height: 260px; bottom: -90px; left: -70px; }

.reg-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
}

/* Brand di atas kartu */
.reg-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  margin-bottom: 16px;
}
.reg-brand-logo {
  width: 34px; height: 34px;
  background: #0d1b2e;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #0dd4b4;
}
.reg-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #14233c;
}
.reg-brand-name span { color: #00a98c; }

/* Progress + counter */
.reg-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.reg-progress-row .reg-progress { flex: 1; margin-bottom: 0; }
.reg-progress-count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #1D9E75;
  min-width: 26px;
  text-align: right;
}

/* Ikon header — bounce halus saat berubah */
.reg-icon { transition: transform .15s; }
.reg-icon:hover { transform: scale(1.08); }

/* Kartu — aksen atas */
.reg-card {
  border-top: 4px solid #1D9E75;
  box-shadow: 0 10px 32px rgba(13, 27, 46, .08);
}

/* Submit — panah bergeser saat hover */
.reg-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.reg-submit-arrow { transition: transform .15s; font-size: 16px; }
.reg-submit:hover:not(:disabled) .reg-submit-arrow { transform: translateX(4px); }
.reg-submit:disabled .reg-submit-arrow { display: none; }

/* Trust chips di bawah kartu */
.reg-chips {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.reg-chip {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  color: #7b8a99;
  display: flex;
  align-items: center;
  gap: 5px;
}
.reg-chip-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #0F6E56;
}

/* ── REGISTER SUCCESS (instruksi pembayaran) ───────── */
.regs-notice {
  background: #FAEEDA;
  border: 1px solid rgba(186, 117, 23, .25);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: #633806;
  line-height: 1.55;
  margin-bottom: 18px;
}
.regs-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.regs-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.regs-step-n {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e1f5ee;
  color: #0F6E56;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.regs-step-t {
  font-size: 13.5px;
  font-weight: 700;
  color: #14233c;
}
.regs-step-d {
  font-size: 12.5px;
  color: #7b8a99;
  line-height: 1.5;
}

/* ── REKENING & WHATSAPP (register success) ────────── */
.regs-bank {
  background: #f6f9f8;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.regs-bank-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
}
.regs-bank-label {
  color: #7b8a99;
  min-width: 92px;
}
.regs-bank-val {
  font-weight: 700;
  color: #14233c;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .3px;
}
.regs-copy {
  margin-left: auto;
  border: 1px solid #cfe8df;
  background: #e1f5ee;
  color: #0F6E56;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background .15s;
}
.regs-copy:hover { background: #cdeee2; }
.regs-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  background: #25D366;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: filter .15s;
}
.regs-wa:hover { filter: brightness(1.07); }

/* ── LOGIN v2 ──────────────────────────────────────── */

/* Preview kartu skor di panel kiri */
.auth-score-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 24px;
  max-width: 280px;
}
.auth-score-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.auth-score-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #0dd4b4;
  line-height: 1;
  margin-bottom: 12px;
}
.auth-score-big span {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
}
.auth-score-bars {
  display: flex;
  gap: 5px;
}
.auth-score-bar {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.asb-fill {
  height: 100%;
  border-radius: 3px;
}
.auth-score-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: .3px;
}

/* Kartu login v2 — aksen teal seperti register */
.auth-card-v2 {
  border-top: 4px solid #00c9a7;
  box-shadow: 0 10px 32px rgba(13, 27, 46, .08);
}

/* Wordmark brand di dalam kartu — warna serasi panel kiri */
.auth-card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
}
.auth-card-brand-logo {
  width: 34px; height: 34px;
  background: #0b1c3d;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #0dd4b4;
}
.auth-card-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0b1c3d;
}
.auth-card-brand-name span { color: #00c9a7; }

/* Sapaan hangat */
.auth-greet {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.auth-greet-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e1f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}
.auth-greet-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #14233c;
}
.auth-greet-sub {
  font-size: 13px;
  color: #7b8a99;
}

/* ── MODAL LUPA PASSWORD ───────────────────────────── */
.lp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 61, .55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}
.lp-overlay.show { display: flex; }
.lp-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border-top: 4px solid #00c9a7;
  padding: 26px 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 16px 48px rgba(13, 27, 46, .25);
}
.lp-close {
  position: absolute;
  top: 12px; right: 14px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  color: #b0bec5;
  padding: 4px;
}
.lp-close:hover { color: #14233c; }
.lp-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #e1f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.lp-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #14233c;
  margin-bottom: 6px;
}
.lp-desc {
  font-size: 13px;
  color: #7b8a99;
  line-height: 1.6;
  margin-bottom: 14px;
}
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.lp-step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: #4a5568;
}
.lp-step-n {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e1f5ee;
  color: #0F6E56;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── JOURNEY TIMELINE (panel kiri login) ───────────── */
.auth-title-dot { color: #0dd4b4; }

.journey {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  max-width: 320px;
}
.journey-step {
  display: flex;
  gap: 14px;
}
.journey-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.journey-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.journey-dot.done {
  background: #0dd4b4;
  border-color: #0dd4b4;
  color: #04342C;
  font-weight: 900;
  font-size: 15px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.journey-dot.current {
  background: rgba(13,212,180,0.14);
  border-color: #0dd4b4;
  box-shadow: 0 0 0 4px rgba(13,212,180,0.12);
}
.journey-line {
  width: 2px;
  flex: 1;
  min-height: 16px;
  background: rgba(255,255,255,0.12);
  margin: 3px 0;
}
.journey-line.active { background: rgba(13,212,180,0.45); }

.journey-body { padding-bottom: 16px; padding-top: 4px; }
.journey-t {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.3;
}
.journey-d {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: .2px;
}
