/* =============================================================
 * auth-shared.css — 登录 / 注册 / 找回密码 三页公共样式（单源）
 *
 * 抽取自 login.php / register.php / forgot_password.php 三份
 * 几乎一致的 <style> 内联块。统一使用 theme-tokens.css 的变量，
 * 去掉 login/register 里硬编码的 #06a6f1 / #0590d4 / #2c6ba8。
 *
 * 使用方式（见各 auth 页面改造）：
 *   在 <head> 引入本文件（放在 theme-tokens.css 之后）。
 *   删除页面内联的重复规则即可，专属覆盖（如 login 的 luxury 层）
 *   仍保留在各页独立的 <style> 中（auth-shared 只放“完全一致”的部分）。
 * ============================================================= */

/* ---------- 基础重置（仅作用于 auth 独立页，文件只被这三页引用） ---------- */
.auth-page,
.login-page,
.reg-page,
.forgot-page {
  --app-height: 1vh;
}
.auth-page *,
.login-page *,
.reg-page *,
.forgot-page *,
.auth-page *::before,
.login-page *::before,
.reg-page *::before,
.forgot-page *::before,
.auth-page *::after,
.login-page *::after,
.reg-page *::after,
.forgot-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

.auth-page body,
.login-page body,
.reg-page body,
.forgot-page body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  padding-top: 0 !important;
}
.auth-page a,
.login-page a,
.reg-page a,
.forgot-page a { color: inherit; text-decoration: none; }
.auth-page img,
.login-page img,
.reg-page img,
.forgot-page img { max-width: 100%; height: auto; vertical-align: middle; }
.auth-page ul,
.login-page ul,
.reg-page ul,
.forgot-page ul,
.auth-page ol,
.login-page ol,
.reg-page ol,
.forgot-page ol { list-style: none; }
.auth-page input,
.login-page input,
.reg-page input,
.forgot-page input,
.auth-page button,
.login-page button,
.reg-page button,
.forgot-page button { font-family: inherit; outline: none; border: none; }

/* ---------- 表单通用 ---------- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-1);
  font-weight: 600;
  font-size: 14px;
}
.form-group label .req { color: var(--color-price); }

.input-wrap { position: relative; }
.input-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--color-text-3);
  transition: fill .2s;
  pointer-events: none;
}
.form-control {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 40px;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  background: var(--color-white);
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.form-control::placeholder { color: var(--color-text-placeholder); }
.form-control:focus {
  border-color: var(--color-brand);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(0, 160, 233, .08);
}
.form-control:focus + svg,
.input-wrap:focus-within svg { fill: var(--color-brand); }

.pwd-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
.pwd-toggle svg {
  position: static;
  transform: none;
  width: 20px;
  height: 20px;
  fill: var(--color-text-3);
  transition: fill .2s;
}
.pwd-toggle:hover svg { fill: var(--color-brand); }

/* ---------- 提示条 ---------- */
.alert {
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.alert svg { width: 16px; height: 16px; flex-shrink: 0; }
.alert-error { background: #fef2f2; color: var(--color-price); border-left: 3px solid var(--color-price); }
.alert-success { background: #f0fdf4; color: #22c55e; border-left: 3px solid #22c55e; }

/* ---------- 品牌块（logo + 标题） ---------- */
.login-brand,
.reg-brand,
.forgot-brand { text-align: center; margin-bottom: 24px; }
.login-brand .brand-logo,
.reg-brand .brand-logo,
.forgot-brand .brand-logo {
  width: 48px;
  height: 48px;
  background: var(--color-brand);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(6, 166, 241, .2);
}
.login-brand h1,
.reg-brand h1,
.forgot-brand h1 { font-size: 18px; font-weight: 700; color: var(--color-text-1); margin-bottom: 4px; }
.login-brand p,
.reg-brand p,
.forgot-brand p { font-size: 12px; color: #8f8f8f; }

/* ---------- 按钮（统一为品牌渐变主按钮） ---------- */
.btn-login,
.btn-register,
.btn-primary {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: var(--color-white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.btn-login:active,
.btn-register:active,
.btn-primary:active { opacity: .9; transform: scale(.98); }

/* ---------- 登录页底部 / 注册页底部 / 找回页底部 ---------- */
.login-bottom,
.reg-bottom,
.forgot-bottom { text-align: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid #eef2f6; }
.login-bottom p,
.reg-bottom p,
.forgot-bottom p { font-size: 14px; color: #8f8f8f; }
.login-bottom a,
.reg-bottom a,
.forgot-bottom a { color: var(--color-brand); font-weight: 600; }
.login-bottom .contact-hint,
.reg-bottom .contact-hint { font-size: 12px; color: #8f8f8f; margin-top: 6px; }

.login-bottom .terms-link { text-align: center; font-size: 13px; color: var(--color-text-placeholder); margin-top: 12px; }

/* 记住我 / 忘记密码 / 协议 */
.remember-check,
.agree-check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.remember-check { margin-bottom: 20px; }
.agree-row { margin-bottom: 20px; }
.remember-check input,
.agree-check input { width: 16px; height: 16px; accent-color: var(--color-brand); cursor: pointer; flex-shrink: 0; }
.remember-check span { font-size: 13px; color: #8f8f8f; cursor: pointer; }
.agree-check { align-items: flex-start; }
.agree-check span { font-size: 13px; color: #8f8f8f; cursor: pointer; line-height: 1.5; }
.remember-check a,
.agree-check a,
.forgot-link { color: var(--color-brand); font-weight: 500; }
.forgot-link:hover { text-decoration: underline; }

/* 蜜罐（防机器人） */
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* 分隔线 + 其他登录方式 */
.divider { display: flex; align-items: center; margin: 20px 0; color: var(--color-text-placeholder); font-size: 12px; }
.divider::before,
.divider::after { content: ""; flex: 1; height: 1px; background: var(--color-border-light); }
.divider span { padding: 0 10px; }
.quick-login { display: flex; gap: 12px; justify-content: center; }
.quick-login button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #e4e7ec; background: var(--color-white);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.quick-login button:hover { border-color: var(--color-brand); }
.quick-login svg { width: 22px; height: 22px; }

/* 验证码（找回页） */
.code-group { display: flex; gap: 10px; }
.code-group .input-wrap { flex: 1; }
.btn-send-code {
  flex-shrink: 0; height: 50px; padding: 0 18px;
  background: var(--color-brand); color: var(--color-white);
  border: none; border-radius: 13px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .25s; white-space: nowrap;
}
.btn-send-code:hover:not(:disabled) { background: var(--color-brand-dark); transform: translateY(-1px); }
.btn-send-code:disabled { background: #cbd5e0; color: var(--color-white); cursor: not-allowed; }

.security-note {
  display: flex; gap: 8px; align-items: flex-start; margin-top: 14px;
  padding: 11px 12px; border-radius: 12px; background: #f6fbff;
  color: #6b7b8e; font-size: 12px; line-height: 1.55; border: 1px solid #e6f0f8;
}
.security-note svg { width: 16px; height: 16px; fill: var(--color-brand); flex-shrink: 0; margin-top: 1px; }

/* ---------- 卡片 ---------- */
.login-card,
.reg-card,
.forgot-card {
  position: relative; z-index: 1;
  background: var(--color-white);
  border: 1px solid rgba(220, 236, 247, .95);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(31, 68, 105, .14);
  width: 100%; max-width: 420px; padding: 36px 28px; margin: 16px auto;
  animation: cardIn .5s cubic-bezier(.22, 1, .36, 1);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- 主区域背景 + 光斑 ---------- */
.login-main,
.reg-main,
.forgot-main {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; min-height: calc(var(--app-height, 1vh) * 100);
  position: relative; overflow: hidden; padding: 0 16px;
  background: linear-gradient(135deg, #e8f4fc 0%, #d4ebf7 100%);
}
.login-main::before,
.reg-main::before,
.login-main::after,
.reg-main::after,
.forgot-main::before,
.forgot-main::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}

/* ---------- 分栏布局（左营销 / 右表单） ---------- */
.login-split,
.reg-split,
.forgot-split { display: none; }

.login-split-left,
.reg-split-left,
.forgot-split-left {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 55%, var(--color-brand-light) 100%);
  color: var(--color-white);
  position: relative; overflow: hidden;
  isolation: isolate; min-width: 0;
}
.login-split-left::before,
.reg-split-left::before,
.forgot-split-left::before,
.login-split-left::after,
.reg-split-left::after,
.forgot-split-left::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .08);
}
.login-split-left h2,
.reg-split-left h2,
.forgot-split-left h2 { position: relative; z-index: 1; }
.login-split-left .subtitle,
.reg-split-left .subtitle,
.forgot-split-left .subtitle { position: relative; z-index: 1; opacity: .9; }
.login-split-left .feature-list,
.reg-split-left .feature-list,
.forgot-split-left .feature-list { position: relative; z-index: 1; }
.login-split-left .feature-item,
.reg-split-left .feature-item,
.forgot-split-left .feature-item {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; opacity: .9;
}
.login-split-left .feature-item .check,
.reg-split-left .feature-item .check,
.forgot-split-left .feature-item .check {
  width: 24px; height: 24px; background: rgba(255, 255, 255, .2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.login-split-left .feature-item .check svg { width: 14px; height: 14px; fill: var(--color-white); }
.login-split-left .stats,
.reg-split-left .stats,
.forgot-split-left .stats {
  display: flex; gap: 30px; margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15); position: relative; z-index: 1;
}
.login-split-left .stat-item,
.reg-split-left .stat-item,
.forgot-split-left .stat-item { text-align: left; }
.login-split-left .stat-num,
.reg-split-left .stat-num,
.forgot-split-left .stat-num { font-size: 24px; font-weight: 700; color: var(--color-white); }
.login-split-left .stat-label,
.reg-split-left .stat-label,
.forgot-split-left .stat-label { font-size: 12px; opacity: .7; margin-top: 2px; }

.login-split-right,
.reg-split-right,
.forgot-split-right {
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; min-width: 0;
}
.login-split-right .login-brand,
.reg-split-right .reg-brand { display: none; }
.login-split-right .login-bottom,
.reg-split-right .reg-bottom { border-top: none; padding-top: 0; }

/* ---------- PC 顶栏（logo + 导航 + 电话） ---------- */
.login-pc-header,
.reg-pc-header {
  display: none;
  background: var(--color-white);
  border-bottom: 1px solid #eef2f6;
  height: 60px; align-items: center; padding: 0 40px; gap: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .03);
  position: sticky; top: 0; z-index: 100;
}
.login-pc-header .logo,
.reg-pc-header .logo {
  width: 40px; height: 40px; background: var(--color-brand); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--color-white);
  font-weight: 800; font-size: 18px; flex-shrink: 0; cursor: pointer;
}
.login-pc-header .logo-text,
.reg-pc-header .logo-text { font-size: 18px; font-weight: 700; color: var(--color-text-1); margin-left: 8px; cursor: pointer; white-space: nowrap; }
.login-pc-header nav,
.reg-pc-header nav { flex: 1; display: flex; gap: 4px; justify-content: center; align-items: center; }
.login-pc-header nav a,
.reg-pc-header nav a {
  color: var(--color-text-1); padding: 7px 16px; border-radius: 20px; font-size: 14px; transition: all .2s; white-space: nowrap;
}
.login-pc-header nav a:hover,
.reg-pc-header nav a:hover { background: #f0f5ff; color: var(--color-brand); }
.login-pc-header .phone,
.reg-pc-header .phone {
  font-size: 18px; font-weight: 700; color: var(--color-brand); flex-shrink: 0; margin-left: auto;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.login-pc-header .phone svg,
.reg-pc-header .phone svg { width: 20px; height: 20px; fill: var(--color-brand); }

/* forgot 页顶栏（移动端固定、PC 隐藏 home 按钮） */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 18px rgba(35, 83, 120, .08);
  height: 50px; display: flex; align-items: center; padding: 0 14px; border-bottom: 1px solid rgba(226, 239, 250, .85);
}
.header .logo {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--color-white);
  font-weight: 800; font-size: 16px; flex-shrink: 0; cursor: pointer;
  background: linear-gradient(135deg, #3f8fd0, var(--color-brand-light));
  box-shadow: 0 8px 20px rgba(0, 160, 233, .22);
}
.header .logo-text { font-size: 16px; font-weight: 700; color: #1f2f45; margin-left: 9px; cursor: pointer; white-space: nowrap; letter-spacing: .2px; }
.header .home-btn { margin-left: auto; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: none; }
.header .home-btn svg { width: 22px; height: 22px; fill: var(--color-text-3); }

/* ---------- 页脚版权 ---------- */
.login-footer,
.reg-footer,
.forgot-footer {
  background: var(--color-text-1);
  color: var(--color-text-3);
  padding: 12px 16px; text-align: center; font-size: 12px;
}
.login-footer a,
.reg-footer a,
.forgot-footer a { color: var(--color-text-3); }
.login-footer a:hover,
.reg-footer a:hover,
.forgot-footer a:hover { color: var(--color-brand); }

/* ---------- 找回页步骤条 ---------- */
.steps { display: flex; align-items: center; justify-content: center; margin-bottom: 24px; gap: 0; background: #f4f8fc; border: 1px solid #e6f0f8; border-radius: 999px; padding: 10px 12px; position: relative; z-index: 1; }
.step { display: flex; align-items: center; gap: 6px; transition: all .3s; white-space: nowrap; }
.step-num { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: all .3s; border: 2px solid #d8e6f2; color: #8ba0b4; background: var(--color-white); }
.step.active .step-num { background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark)); border-color: var(--color-brand); color: var(--color-white); box-shadow: 0 8px 18px rgba(0, 160, 233, .22); }
.step.done .step-num { background: #48bb78; border-color: #48bb78; color: var(--color-white); box-shadow: 0 8px 16px rgba(72, 187, 120, .18); }
.step-label { font-size: 13px; font-weight: 600; transition: color .3s; color: #92a3b5; }
.step.active .step-label { color: var(--color-brand); }
.step.done .step-label { color: #48bb78; }
.step-line { width: 30px; height: 2px; background: #dfeaf3; margin: 0 6px; transition: background .3s; }
.step-line.done { background: #48bb78; }

.step-3-content { text-align: center; padding: 20px 0; }
.step-3-content .check-icon { width: 74px; height: 74px; background: linear-gradient(135deg, #48bb78, #33a766); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 14px 28px rgba(72, 187, 120, .24); }
.step-3-content .check-icon svg { width: 36px; height: 36px; fill: var(--color-white); }
.step-3-content h3 { font-size: 20px; color: var(--color-text-1); margin-bottom: 8px; }
.step-3-content p { font-size: 14px; color: var(--color-text-3); margin-bottom: 20px; }

/* 找回页装饰球 */
.forgot-main .orb { position: absolute; border-radius: 999px; background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(0, 160, 233, .12)); pointer-events: none; }
.forgot-main .orb-1 { width: 110px; height: 110px; left: 10%; top: 18%; }
.forgot-main .orb-2 { width: 72px; height: 72px; right: 14%; bottom: 18%; }

/* =========================================================
 * 响应式（与原三页一致）
 * ========================================================= */
@media (min-width: 768px) {
  .login-pc-header,
  .reg-pc-header { display: flex; }
  .login-main,
  .reg-main { min-height: 100vh; min-height: calc(var(--app-height, 1vh) * 100); padding-top: 20px; }
  .login-card,
  .reg-card { padding: 40px 32px; border-radius: 16px; box-shadow: 0 8px 40px rgba(6, 166, 241, .1); }
  .login-brand .brand-logo,
  .reg-brand .brand-logo,
  .forgot-brand .brand-logo { width: 64px; height: 64px; font-size: 28px; }
  .login-brand h1,
  .reg-brand h1,
  .forgot-brand h1 { font-size: 26px; }
  .login-brand p,
  .reg-brand p { font-size: 13px; }
  .form-control { height: 48px; font-size: 15px; }
  .btn-login,
  .btn-register { height: 48px; }
  .login-split-left h2,
  .reg-split-left h2 { font-size: 28px; }

  .header { height: 60px; padding: 0 24px; }
  .header .logo { width: 40px; height: 40px; font-size: 18px; }
  .header .logo-text { font-size: 18px; }
  .header .home-btn { display: none; }
  .forgot-main { padding-top: 60px; }
  .forgot-card { padding: 44px 40px 34px; }
  .forgot-brand h1 { font-size: 26px; }
}

@media (min-width: 1024px) {
  .login-main,
  .reg-main { padding-top: 20px; align-items: stretch; }
  .login-split,
  .reg-split {
    display: grid; grid-template-columns: 1fr 1.6fr;
    max-width: 1100px; width: 100%; margin: 0 auto;
    background: var(--color-white); border-radius: 20px;
    box-shadow: 0 8px 50px rgba(6, 166, 241, .12); overflow: hidden; min-height: 600px;
  }
  .login-split-left,
  .reg-split-left {
    padding: 50px 40px; display: flex; flex-direction: column; justify-content: center;
  }
  .login-split-left::before,
  .reg-split-left::before { content: ""; position: absolute; top: -50px; right: -50px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, .08); }
  .login-split-left::after,
  .reg-split-left::after { content: ""; position: absolute; bottom: -80px; left: -30px; width: 250px; height: 250px; border-radius: 50%; background: rgba(255, 255, 255, .06); }
  .login-split-left .left-logo,
  .reg-split-left .left-logo { width: 56px; height: 56px; background: rgba(255, 255, 255, .2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; margin-bottom: 24px; backdrop-filter: blur(10px); }
  .login-split-left h2,
  .reg-split-left h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; position: relative; z-index: 1; }
  .login-split-left .subtitle,
  .reg-split-left .subtitle { font-size: 15px; opacity: .85; margin-bottom: 36px; line-height: 1.8; position: relative; z-index: 1; }
  .login-split-right,
  .reg-split-right { padding: 50px 80px; position: relative; z-index: 1; min-width: 0; }
  .login-split-right .login-card,
  .reg-split-right .reg-card { box-shadow: none; width: 100%; max-width: 480px !important; margin: 0 !important; padding: 50px 40px !important; background: transparent; }
  .login-split-right .login-bottom,
  .reg-split-right .reg-bottom { border-top: none; padding-top: 0; }

  .forgot-split {
    display: grid; grid-template-columns: 1fr 1.6fr;
    background: var(--color-white); border-radius: 24px;
    box-shadow: 0 24px 70px rgba(41, 94, 135, .16); overflow: hidden; min-height: 610px;
  }
  .forgot-split-left {
    display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
    padding: 54px 44px; min-width: 0;
  }
  .forgot-split-left::before { content: ""; position: absolute; top: -70px; right: -70px; width: 230px; height: 230px; border-radius: 50%; background: rgba(255, 255, 255, .10); }
  .forgot-split-left::after { content: ""; position: absolute; bottom: -100px; left: -50px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255, 255, 255, .07); }
  .forgot-split-left .left-logo { width: 60px; height: 60px; background: rgba(255, 255, 255, .20); border: 1px solid rgba(255, 255, 255, .22); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; margin-bottom: 26px; backdrop-filter: blur(10px); position: relative; z-index: 1; }
  .forgot-split-left h2 { font-size: 30px; font-weight: 800; line-height: 1.35; margin-bottom: 14px; position: relative; z-index: 1; letter-spacing: .2px; }
  .forgot-split-left .subtitle { font-size: 15px; line-height: 1.9; opacity: .88; margin-bottom: 32px; position: relative; z-index: 1; }
  .forgot-split-right { padding: 30px; background: linear-gradient(135deg, #fff 0%, #f8fcff 100%); position: relative; z-index: 1; min-width: 0; align-items: center; }
  .forgot-split-right .forgot-card { box-shadow: none; border: none; background: transparent; width: 100%; max-width: 440px; margin: 0; padding: 0 10px; overflow: visible; }
  .forgot-split-right .forgot-card::before,
  .forgot-split-right .forgot-card::after { display: none; }
  .forgot-split-right .forgot-brand .brand-logo { width: 56px; height: 56px; font-size: 24px; border-radius: 15px; }
  .forgot-split-right .forgot-brand h1 { font-size: 25px; }
  .forgot-split-right .steps { margin-bottom: 22px; }
  .forgot-footer { display: none; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .login-split,
  .reg-split { display: block !important; width: 100%; }
  .login-split-left,
  .reg-split-left { display: none; }
  .login-split-right,
  .reg-split-right { padding: 0; }
  .login-card,
  .reg-card { max-width: 100%; margin: 0; border-radius: 0; box-shadow: none; }
}

@media (max-width: 420px) {
  .login-card,
  .reg-card,
  .forgot-card { padding: 30px 20px 24px; border-radius: 18px; }
  .forgot-card { border-radius: 18px; }
  .steps { padding: 9px 8px; }
  .step-label { font-size: 12px; }
  .step-line { width: 18px; margin: 0 4px; }
}
