/* ================================================================
   UNIPORT MARKET — auth.css  (v2 — fully responsive, zero bugs)
   Login & Register pages — split-panel layout
   ================================================================ */

/* ── Reset & base ── */
/* ── Reset & base ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

/* ── Body ── */
.auth-body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #F7F9FF;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* ── Two-panel layout ── */
.auth-page {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(160deg, #080D1A 0%, #101625 50%, #1A2235 100%);
}

/* ================================================================
   LEFT PANEL — Branding
   ================================================================ */
.auth-left {
  width: 45%;
  min-width: 0;
  background: linear-gradient(160deg, #080D1A 0%, #101625 50%, #1A2235 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Glowing orbs */
.auth-left::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(27,79,255,.22), transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.auth-left::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,196,170,.18), transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.auth-left-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  padding: 2.5rem 2.5rem 2rem;
}

/* Brand / Logo */
.auth-logo-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.auth-logo-link:hover {
  opacity: .85;
}

.auth-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1B4FFF, #00C4AA);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(27,79,255,.4);
  flex-shrink: 0;
}
.auth-logo-text strong {
  color: #5b93ff;
}

/* Left body content — centred vertically */
.auth-left-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  min-height: 0;
}

.auth-left-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #82a8ff;
  margin-bottom: 1.25rem;
}
.auth-left-eyebrow .dot {
  width: 7px;
  height: 7px;
  background: #00C4AA;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.5); opacity: .7; }
}

.auth-left-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 1rem;
}
.auth-left-title .grad {
  background: linear-gradient(135deg, #5b93ff, #00C4AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-left-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 300px;
}

/* ── Stats row (login page) ── */
.auth-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.auth-stat-n {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.auth-stat-l {
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .2rem;
}

/* ── Floating product cards (login page) ── */
.auth-float-cards {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.auth-float-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .7rem .9rem;
  backdrop-filter: blur(8px);
  animation: cardFloat 5s ease-in-out infinite;
}
.auth-float-card:nth-child(2) { animation-delay: -1.5s; }
.auth-float-card:nth-child(3) { animation-delay: -3s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.afc-emoji { font-size: 1.5rem; flex-shrink: 0; }
.afc-name  { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85); }
.afc-price {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: #00C4AA;
}

/* ── Benefits list (register page) ── */
.auth-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.auth-benefits li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .86rem;
  color: rgba(255,255,255,.75);
}
.auth-benefits li i {
  color: #00C4AA;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ── Testimonial card (register page) ── */
.auth-testi {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(8px);
}
.auth-testi-stars {
  color: #FFB800;
  font-size: .8rem;
  margin-bottom: .55rem;
}
.auth-testi-text {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 .75rem;
}
.auth-testi-user  { display: flex; align-items: center; gap: .6rem; }
.auth-testi-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
}
.auth-testi-name { font-size: .78rem; font-weight: 700; color: #fff; }
.auth-testi-dept { font-size: .68rem; color: rgba(255,255,255,.4); }

/* Footer text inside left panel */
.auth-left-footer {
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  margin: 0;
  flex-shrink: 0;
}

/* ================================================================
   RIGHT PANEL — Form
   ================================================================ */
.auth-right {
  flex: 1;
  min-width: 0;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2rem;
  overflow-y: auto;
  min-height: 100vh;
}

.auth-form-wrap {
  width: 100%;
  max-width: 440px;
  padding: 1rem 0;
}

/* ── Mobile logo (hidden on desktop) ── */
.auth-mobile-logo {
  display: none;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #080D1A;
  margin-bottom: 1.5rem;
}
.auth-mobile-logo .auth-logo-icon {
  box-shadow: none;
}
.auth-mobile-logo strong { color: #1B4FFF; }

/* ── Page headings ── */
.auth-form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #080D1A;
  margin: 0 0 .3rem;
  line-height: 1.2;
}
.auth-form-sub {
  font-size: .84rem;
  color: #6B7280;
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

/* ================================================================
   Flash / Alert messages
   ================================================================ */
.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.auth-alert i {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.auth-alert-danger  { background: rgba(229,62,62,.08);  border: 1.5px solid rgba(229,62,62,.25);  color: #c53030; }
.auth-alert-success { background: rgba(0,196,170,.08);  border: 1.5px solid rgba(0,196,170,.25);  color: #0a7a6b; }
.auth-alert-warning { background: rgba(255,184,0,.08);  border: 1.5px solid rgba(255,184,0,.3);   color: #92620a; }
.auth-alert-info    { background: rgba(27,79,255,.07);  border: 1.5px solid rgba(27,79,255,.2);   color: #1B4FFF; }

/* ================================================================
   Form Elements
   ================================================================ */

/* Group spacing */
.form-group {
  margin-bottom: 1.1rem;
  width: 100%;
}

/* Labels */
.form-label {
  font-size: .8rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: .4rem;
  display: block;
  line-height: 1.4;
}

/* Label row with "Forgot password?" link */
.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .4rem;
  gap: .5rem;
}
.form-label-row .form-label {
  margin-bottom: 0;
}
.form-label-link {
  font-size: .75rem;
  font-weight: 600;
  color: #1B4FFF;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
  flex-shrink: 0;
}
.form-label-link:hover {
  color: #0A34D4;
  text-decoration: underline;
}

/* Input wrapper (for icon + toggle positioning) */
.input-wrap {
  position: relative;
  width: 100%;
}

/* Left icon inside input */
.input-ico {
  position: absolute;
  left: .88rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-size: .85rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

/* Text input / select */
.form-control {
  display: block;
  width: 100%;
  background: #F7F9FF;
  border: 1.5px solid #E2E8F8;
  border-radius: 10px;
  padding: .72rem 2.8rem .72rem 2.55rem; /* right padding for toggle icon */
  font-size: .875rem;
  color: #111827;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: #1B4FFF;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27,79,255,.12);
  outline: none;
}
.form-control::placeholder {
  color: #9CA3AF;
}
/* No right padding needed on inputs without a toggle */
.input-wrap:not(:has(.input-tog)) .form-control {
  padding-right: 1rem;
}
.form-control.is-invalid {
  border-color: #e53e3e;
  background: rgba(229,62,62,.04);
  box-shadow: none;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(229,62,62,.12);
}

/* Password show/hide toggle */
.input-tog {
  position: absolute;
  right: .88rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  cursor: pointer;
  font-size: .85rem;
  line-height: 1;
  transition: color .2s ease;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
}
.input-tog:hover {
  color: #1B4FFF;
}

/* ── Field-level errors ── */
.field-errors {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .4rem;
}
.field-error {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  color: #c53030;
  line-height: 1.4;
}
.field-error i {
  font-size: .72rem;
  flex-shrink: 0;
}

/* ── Field hint text ── */
.field-hint {
  display: block;
  font-size: .71rem;
  color: #9CA3AF;
  margin-top: .35rem;
  line-height: 1.4;
}

/* ── Password strength indicator ── */
.pw-strength-wrap {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: .45rem;
}
.pw-strength-bar {
  flex: 1;
  height: 4px;
  background: #E2E8F8;
  border-radius: 2px;
  overflow: hidden;
  min-width: 0;
}
.pw-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: #E2E8F8;
  transition: width .35s ease, background .35s ease;
}
.pw-strength-label {
  font-size: .68rem;
  font-weight: 700;
  color: #9CA3AF;
  white-space: nowrap;
  transition: color .35s ease;
  min-width: 80px;
  text-align: right;
}

/* ── Two-column layout for password + confirm (register page) ── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  width: 100%;
}

/* ── Remember-me checkbox row (login page) ── */
.form-check-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.25rem !important;
}
.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #1B4FFF;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.form-check-label {
  font-size: .83rem;
  color: #6B7280;
  cursor: pointer;
  margin: 0;
  line-height: 1.4;
}

/* ── Accept-terms row (register page) ── */
.form-terms-row {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem !important;
}
.form-terms-row .form-checkbox {
  margin-top: .2rem;
}
.form-terms-label {
  font-size: .8rem;
  color: #6B7280;
  line-height: 1.55;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

/* ── Submit button ── */
.btn-submit {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #1B4FFF, #0A34D4);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: .9rem 1rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(27,79,255,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-top: .25rem;
  text-align: center;
  line-height: 1.4;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,79,255,.45);
}
.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(27,79,255,.3);
}

/* ── Divider ── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 1.4rem 0;
  font-size: .75rem;
  color: #9CA3AF;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E2E8F8;
}
.auth-divider span {
  white-space: nowrap;
}

/* ── Social buttons (login page) ── */
.auth-socials {
  display: flex;
  gap: .65rem;
  margin-bottom: 1.25rem;
}
.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1.5px solid #E2E8F8;
  border-radius: 10px;
  padding: .65rem .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: #374151;
  background: #fff;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  min-width: 0;
}
.btn-social:hover {
  border-color: #1B4FFF;
  background: #F7F9FF;
  box-shadow: 0 2px 8px rgba(27,79,255,.1);
}
.btn-social img {
  flex-shrink: 0;
}

/* ── "Already have an account?" switch ── */
.auth-switch {
  text-align: center;
  font-size: .84rem;
  color: #6B7280;
  margin: 1.1rem 0 0;
  line-height: 1.5;
}
.auth-switch-link {
  color: #1B4FFF;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.auth-switch-link:hover {
  color: #0A34D4;
  text-decoration: underline;
}

/* ================================================================
   RESPONSIVE — Tablet  (901px – 1100px)
   ================================================================ */
@media (max-width: 1100px) {
  .auth-left {
    width: 42%;
  }
  .auth-left-inner {
    padding: 2rem 2rem 1.75rem;
  }
}

/* ================================================================
   RESPONSIVE — Mobile  (≤ 900px)
   Left panel hides; right panel becomes full width
   ================================================================ */
@media (max-width: 900px) {
  .auth-page {
    flex-direction: column;
  }

  .auth-left {
    display: none;
  }

  .auth-right {
    width: 100%;
    min-height: 100vh;
    padding: 2rem 1.25rem 3rem;
    align-items: flex-start;
    justify-content: center;
    border-radius: 0;
  }

  .auth-right {
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}
  .auth-form-wrap {
    max-width: 480px;
    padding: 0;
  }

  .auth-mobile-logo {
    display: flex;
  }
}

/* ================================================================
   RESPONSIVE — Small mobile  (≤ 520px)
   Password row stacks; font sizes tighten
   ================================================================ */
@media (max-width: 520px) {
  .auth-right {
    padding: 1.5rem 1rem 2.5rem;
  }

  .auth-form-title {
    font-size: 1.3rem;
  }

  .auth-form-wrap {
    max-width: 100%;
  }
  .auth-right {
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}
  /* Stack the two password fields */
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Social buttons slightly smaller text */
  .btn-social {
    font-size: .75rem;
    padding: .6rem .4rem;
  }

  /* Strength label wraps on tiny screens */
  .pw-strength-label {
    min-width: 60px;
    font-size: .65rem;
  }
}

/* ================================================================
   RESPONSIVE — Very small  (≤ 360px)
   ================================================================ */
@media (max-width: 360px) {
  .auth-right {
    padding: 1.25rem .85rem 2rem;
  }

  .auth-form-title {
    font-size: 1.2rem;
  }

  .auth-form-sub {
    font-size: .8rem;
  }

  .form-control {
    font-size: .82rem;
    padding-top: .65rem;
    padding-bottom: .65rem;
  }

  .btn-submit {
    font-size: .88rem;
    padding: .82rem 1rem;
  }
}

/* ================================================================
   FORGOT PASSWORD PAGE — extra components
   ================================================================ */

/* ── 3-step list ── */
.auth-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-steps li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.auth-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B4FFF, #00C4AA);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .05rem;
  box-shadow: 0 3px 10px rgba(27,79,255,.35);
}
.auth-step-title {
  font-size: .86rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  line-height: 1.3;
}
.auth-step-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: .15rem;
  line-height: 1.4;
}

/* ── Security note strip ── */
.auth-security-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(27,79,255,.1);
  border: 1px solid rgba(27,79,255,.2);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.auth-security-note i {
  color: #5b93ff;
  font-size: .95rem;
  flex-shrink: 0;
}
.auth-security-note strong {
  color: rgba(255,255,255,.85);
  font-weight: 700;
}

/* ── Help box (right panel — forgot page) ── */
.auth-help-box {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: #F7F9FF;
  border: 1.5px solid #E2E8F8;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}
.auth-help-box > i {
  color: #1B4FFF;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.auth-help-title {
  font-size: .82rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 .3rem;
}
.auth-help-body {
  font-size: .78rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* ── Back link ── */
.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  color: #6B7280;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color .2s ease;
}
.auth-back-link i {
  font-size: .85rem;
  transition: transform .2s ease;
}
.auth-back-link:hover {
  color: #1B4FFF;
}
.auth-back-link:hover i {
  transform: translateX(-3px);
}

/* ── Icon badge (above title on right panel) ── */
.auth-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.auth-icon-badge--blue {
  background: rgba(27,79,255,.1);
  color: #1B4FFF;
  border: 1.5px solid rgba(27,79,255,.2);
}
.auth-icon-badge--teal {
  background: rgba(0,196,170,.1);
  color: #00a891;
  border: 1.5px solid rgba(0,196,170,.2);
}

/* ================================================================
   RESET PASSWORD PAGE — extra components
   ================================================================ */

/* ── Password tips card (left panel) ── */
.auth-tips-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
}
.auth-tips-heading {
  font-size: .78rem;
  font-weight: 700;
  color: #5b93ff;
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.auth-tips-heading i {
  font-size: .85rem;
}
.auth-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.auth-tips-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.auth-tips-list li i {
  color: #00C4AA;
  font-size: .8rem;
  flex-shrink: 0;
}

/* ── Password match indicator ── */
.pw-match-wrap {
  margin-top: .4rem;
}
.pw-match-indicator {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4;
}
.pw-match-ok  { color: #0a7a6b; }
.pw-match-err { color: #c53030; }
