:root{
  --bg:#eef2f7;
  --card:#ffffff;
  --ink:#101827;
  --muted:#667085;
  --line:#dfe6ef;
  --navy:#10192d;
  --navy2:#1f2f49;
  --green:#0f766e;
  --blue:#2563eb;
  --danger:#b42318;
  --shadow:0 16px 40px rgba(16,24,39,.08);
  --radius:24px;
}
*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(37,99,235,.13), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(15,118,110,.13), transparent 24%),
    var(--bg);
  color:var(--ink);
}
.auth-wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px;
}
.auth-card{
  width:min(980px,100%);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.8);
  border-radius:32px;
  box-shadow:var(--shadow);
  overflow:hidden;
  backdrop-filter:blur(16px);
}
.brand-panel{
  padding:42px;
  background:linear-gradient(145deg,var(--navy),#17233c 55%,#0f766e);
  color:white;
  position:relative;
  overflow:hidden;
}
.brand-panel:before{
  content:"";
  position:absolute;
  width:260px;height:260px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  right:-90px;top:-90px;
}
.brand-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  font-weight:700;
}
.brand-panel h1{
  margin:52px 0 14px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-1px;
}
.brand-panel p{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  font-size:15px;
  max-width:420px;
}
.feature-list{
  display:grid;
  gap:12px;
  margin-top:34px;
}
.feature-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.88);
  font-size:14px;
}
.feature-dot{
  width:28px;height:28px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.12);
}
.form-panel{
  padding:42px;
  background:linear-gradient(180deg,#fff,#f9fbfd);
}
.small-title{
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.11em;
}
h2{
  margin:12px 0 10px;
  font-size:28px;
  letter-spacing:-.5px;
}
.lead{
  color:var(--muted);
  margin:0 0 26px;
  line-height:1.7;
  font-size:14px;
}
label{
  display:block;
  margin:0 0 8px;
  color:#344054;
  font-size:14px;
  font-weight:800;
}
.input{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  border-radius:16px;
  padding:15px 16px;
  font-size:16px;
  outline:none;
  transition:.18s ease;
}
.input:focus{
  border-color:rgba(37,99,235,.45);
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}
.form-row{margin-bottom:16px}
.btn{
  border:0;
  border-radius:16px;
  padding:14px 18px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.btn-primary{
  width:100%;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:white;
  box-shadow:0 12px 22px rgba(37,99,235,.20);
}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 16px 26px rgba(37,99,235,.25)}
.btn-light{
  background:#eef2f7;
  color:#1f2f49;
}
.notice{
  border-radius:16px;
  padding:12px 14px;
  margin:0 0 16px;
  font-size:14px;
  font-weight:700;
}
.notice.error{background:#fff1f3;color:#b42318;border:1px solid #ffd6dc}
.notice.success{background:#ecfdf3;color:#027a48;border:1px solid #abefc6}
.notice.info{background:#eff6ff;color:#175cd3;border:1px solid #bfdbfe}
.helper{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  margin-top:10px;
}
.otp-boxes{
  display:flex;
  gap:10px;
  justify-content:center;
  margin:10px 0 20px;
}
.otp-boxes input{
  width:54px;height:58px;
  border:1px solid var(--line);
  border-radius:16px;
  text-align:center;
  font-size:24px;
  font-weight:900;
  outline:none;
}
.otp-boxes input:focus{border-color:var(--blue);box-shadow:0 0 0 4px rgba(37,99,235,.10)}
.inline-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}
.dashboard-shell{padding:24px 18px;max-width:1760px;width:min(1760px, calc(100vw - 24px));margin:0 auto}
.topbar{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:24px}
.dash-card{background:var(--card);border:1px solid rgba(223,230,239,.9);border-radius:24px;box-shadow:var(--shadow);padding:28px}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}
.stat{background:#f8fafc;border:1px solid var(--line);border-radius:18px;padding:18px}
.stat span{color:var(--muted);font-size:13px;font-weight:800}.stat strong{display:block;font-size:28px;margin-top:6px}
@media(max-width:800px){.auth-card{grid-template-columns:1fr}.brand-panel{display:none}.form-panel{padding:28px}.stats{grid-template-columns:1fr}.topbar{align-items:flex-start;flex-direction:column}.dashboard-shell{width:100%;padding:14px}}
