:root {
      --primary:      #00C5CD;
      --primary-dark: #00C5CD;
      --primary-light: #fff5f0;
      --secondary:     #1A1A2E;
      --success:       #22C55E;
      --border:        #e8e4e0;
      --radius:        1rem;
      --input-radius:  0.65rem;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Poppins';
      color: var(--secondary);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    h1,h2,h3,h4,h5,h6 { font-family: 'Poppins'; }

    /* ── PAGE TOGGLE ── */
    /* .auth-page { display: none; flex: 1; } */
    .auth-page.active { display: flex; }

    /* ── SPLIT LAYOUT ── */
    .auth-layout {
      display: flex;
      min-height: 100vh;
      width: 100%;
    }

    /* ── LEFT PANEL (branding) ── */
    .auth-left {
      flex: 0 0 44%;
       background: linear-gradient(155deg, var(--secondary) 0%, #2a2a4a 60%, #1f1f38 100%); 
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 44px 52px;
      overflow: hidden;
    }
    .auth-left::before {
      content: '';
      position: absolute; top: -120px; right: -80px;
      width: 420px; height: 420px;
     /* background: radial-gradient(circle, rgba(255,107,43,.22) 0%, transparent 65%);*/
      border-radius: 50%;
    }
    .auth-left::after {
      content: '';
      position: absolute; bottom: -100px; left: -60px;
      width: 320px; height: 320px;
     /* background: radial-gradient(circle, rgba(255,209,102,.12) 0%, transparent 65%);*/
      border-radius: 50%;
    }
    .auth-brand {
      font-family: 'Poppins';
      font-weight: 800;
      font-size: 1.8rem;
      color: #fff;
      text-decoration: none;
      position: relative; z-index: 1;
      display: flex; align-items: center; gap: 10px;
    }
    .auth-brand span {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .left-body { position: relative; z-index: 1; }
    .left-tagline {
      font-size: clamp(1.6rem, 2.5vw, 2.4rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .left-tagline em {
      font-style: normal;
      color: #FFD166;
    }
    .left-sub {
      font-size: .95rem;
      color: rgba(255,255,255,.55);
      line-height: 1.7;
      max-width: 340px;
    }
    .left-stats {
      display: flex;
      gap: 32px;
      margin-top: 36px;
      position: relative; z-index: 1;
    }
    .lst { }
    .lst .n {
      font-family: 'Poppins';
      font-weight: 800;
      font-size: 1.4rem;
      color: #FFD166;
    }
    .lst .l {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: rgba(255,255,255,.4);
    }
    .left-testimonial {
      position: relative; z-index: 1;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 20px;
      backdrop-filter: blur(10px);
    }
    .left-testimonial p {
      font-size: .88rem;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .testimonial-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #ffb347);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .9rem; color: #fff; flex-shrink: 0;
    }

    /* ── RIGHT PANEL (form) ── */
    .auth-right {
      flex: 1;
      background: #fafafa;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 32px;
      position: relative;
    }
    .auth-form-wrap {
      width: 100%;
      max-width: 420px;
    }

    /* ── FORM HEADER ── */
    .form-header { margin-bottom: 28px; text-align:center; }
    .form-header h2 {
      font-size: 1.65rem;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .form-header p {
      font-size: .9rem;
      color: #888;
    }

    /* ── MOOVN BUTTON ── */
    .btn-moovn {
      width: 100%;
      padding: 13px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: #fff;
      font-weight: 700;
      font-size: .9rem;
      color: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      transition: border-color .2s, box-shadow .2s;
      text-decoration: none;
    }
    .btn-moovn:hover {
      border-color: var(--primary);
      box-shadow: 0 2px 12px rgba(255,107,43,.12);
      color: var(--secondary);
    }
    .moovn-logo-badge {
      width: 24px; height: 24px; border-radius: 6px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: .7rem; font-weight: 800; color: #fff;
    }

    /* ── DIVIDER ── */
    .or-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 20px 0;
      color: #ccc;
      font-size: .8rem;
      font-weight: 600;
    }
    .or-divider::before,
    .or-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #ebebeb;
    }

    /* ── TAB SWITCHER (email/phone) ── */
    .input-tabs {
      display: flex;
      background: #f0f0f0;
      border-radius: 50px;
      padding: 4px;
      margin-bottom: 20px;
      gap: 4px;
    }
    .input-tab {
      flex: 1;
      padding: 8px;
      border-radius: 50px;
      border: none;
      background: transparent;
      font-size: .82rem;
      font-weight: 600;
      color: #888;
      cursor: pointer;
      transition: all .2s;
    }
    .input-tab.active {
      background: #fff;
      color: var(--secondary);
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }

    /* ── FIELD ── */
    .field-wrap { margin-bottom: 16px; }
    .field-label {
      font-size: .78rem;
      font-weight: 700;
      color: #555;
      margin-bottom: 6px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .field-label a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      font-size: .78rem;
    }
    .field-label a:hover { color: var(--primary-dark); }
    .input-icon-wrap {
      position: relative;
    }
    .input-icon-wrap .icon {
      position: absolute;
      left: 14px; top: 50%;
      transform: translateY(-50%);
      color: #bbb;
      font-size: 1rem;
      pointer-events: none;
    }
    .input-icon-wrap .toggle-pw {
      position: absolute;
      right: 14px; top: 50%;
      transform: translateY(-50%);
      color: #bbb;
      font-size: 1rem;
      cursor: pointer;
      background: none; border: none; padding: 0;
    }
    .input-icon-wrap .toggle-pw:hover { color: var(--primary); }
    .auth-input {
      width: 100%;
      padding: 12px 14px 12px 42px;
      border: 1.5px solid var(--border);
      border-radius: var(--input-radius);
      font-family: 'DM Sans';
      font-size: .92rem;
      color: var(--secondary);
      background: #fff;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .auth-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255,107,43,.1);
    }
    .auth-input.has-error { border-color: #ef4444; }
    .auth-input.has-error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
    .field-error {
      font-size: .75rem;
      color: #ef4444;
      margin-top: 4px;
      display: none;
    }
    .field-error.show { display: block; }

    /* phone input */
    .phone-field-wrap { display: flex; gap: 8px; }
    .country-select {
      padding: 12px 10px;
      border: 1.5px solid var(--border);
      border-radius: var(--input-radius);
      font-size: .82rem;
      font-weight: 600;
      background: #fff;
      color: var(--secondary);
      outline: none;
      cursor: pointer;
      transition: border-color .2s;
      flex-shrink: 0;
    }
    .country-select:focus { border-color: var(--primary); }
    .phone-field-wrap .auth-input { padding-left: 14px; }

    /* ── PASSWORD STRENGTH ── */
    .pw-strength { margin-top: 6px; }
    .pw-bars {
      display: flex; gap: 4px; margin-bottom: 4px;
    }
    .pw-bar {
      height: 3px; flex: 1; border-radius: 10px;
      background: #e8e8e8;
      transition: background .3s;
    }
    .pw-bar.weak   { background: #ef4444; }
    .pw-bar.fair   { background: #f59e0b; }
    .pw-bar.good   { background: #22c55e; }
    .pw-bar.strong { background: #16a34a; }
    .pw-label { font-size: .72rem; color: #aaa; }

    /* ── SECURITY MATH ── */
    .captcha-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #f3f0ef; /*var(--primary-light);*/
      border: 0px solid #ffd5be;
      border-radius: var(--input-radius);
      padding: 12px 14px;
      margin-bottom: 16px;
    }
    .captcha-question {
      font-family: 'Poppins';
      font-weight: 800;
      font-size: 1rem;
      color: var(--secondary);
      white-space: nowrap;
    }
    .captcha-input {
      width: 80px;
      padding: 8px 12px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'Poppins';
      font-weight: 700;
      font-size: .95rem;
      text-align: center;
      outline: none;
      transition: border-color .2s;
    }
    .captcha-input:focus { border-color: var(--primary); }
    .captcha-input.correct { border-color: var(--success); background: #f0fdf4; }
    .captcha-input.wrong   { border-color: #ef4444; background: #fef2f2; }
    .captcha-refresh {
      background: none; border: none; color: #bbb;
      font-size: 1rem; cursor: pointer; padding: 0; flex-shrink: 0;
    }
    .captcha-refresh:hover { color: var(--primary); }

    /* ── SUBMIT BUTTON ── */
    .btn-auth {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      border: none;
      background: var(--primary);
      color: #fff;
      font-family: 'Poppins';
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .btn-auth:hover { background: var(--primary-dark); transform: scale(1.015); }
    .btn-auth:disabled { background: #ddd; color: #aaa; transform: none; cursor: not-allowed; }

    /* ── FOOTER LINK ── */
    .auth-footer-link {
      text-align: center;
      margin-top: 20px;
      font-size: .88rem;
      color: #888;
    }
    .auth-footer-link a {
      color: var(--primary);
      font-weight: 700;
      text-decoration: none;
    }
    .auth-footer-link a:hover { color: var(--primary-dark); }

    /* ── VERIFICATION SCREEN ── */
    .verify-screen { text-align: center; }
    .verify-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #ff9f5a);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: #fff;
      margin: 0 auto 20px;
      animation: pop .4s cubic-bezier(.36,1.6,.6,1);
    }
    @keyframes pop {
      0% { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    .otp-wrap {
      display: flex; gap: 10px; justify-content: center;
      margin: 24px 0;
    }
    .otp-input {
      width: 52px; height: 58px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: 'Poppins';
      font-weight: 800; font-size: 1.4rem;
      text-align: center; color: var(--secondary);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .otp-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255,107,43,.12);
    }
    .otp-input.filled { border-color: var(--primary); background: var(--primary-light); }
    .otp-input-email.filled { border-color: var(--primary); background: var(--primary-light); }
    .resend-link { font-size: .82rem; color: #888; }
    .resend-link a { color: var(--primary); font-weight: 600; text-decoration: none; }

    /* ── SUCCESS ── */
    .success-screen { text-align: center; }
    .success-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, var(--success), #16a34a);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem; color: #fff;
      margin: 0 auto 20px;
      animation: pop .4s cubic-bezier(.36,1.6,.6,1);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .auth-left { display: none; }
      .auth-right { padding: 32px 20px; }
      .auth-page.active { display: block; }
      .auth-layout { min-height: auto; }
      .auth-right {
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 48px;
      }
    }
	
.otp-input-email 
{
  width: 52px;
  height: 58px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  color: var(--secondary);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}