:root{
  --bg:#070a0f;
  --bg2:#0b1020;
  --panel:#0f1625;
  --panelSoft:#131c30;
  --border:rgba(255,255,255,.12);
  --text:#0b0f14;
  --textDark:#0b0f14;
  --textLight:#e9eefc;
  --muted:#c9d2ee;
  --accent:#00ff6a;
  --accent2:#00cc55;
  --shadow:0 20px 60px rgba(0,0,0,.55);
}

*{
  box-sizing:border-box;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(0,255,106,.14), transparent 55%),
    radial-gradient(900px 600px at 85% 25%, rgba(0,204,85,.10), transparent 55%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--textLight);
}

/* ===== TOP BAR ===== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 22px;
  background:rgba(7,10,15,.75);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--textLight);
}

.brandMark{
  width:12px;
  height:12px;
  border-radius:4px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
}

.brandText{
  font-weight:900;
  letter-spacing:.3px;
}

.navLink{
  text-decoration:none;
  color:var(--textLight);
  padding:8px 12px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

/* ===== LAYOUT ===== */
.shell{
  max-width:1100px;
  margin:0 auto;
  padding:40px 22px;
}

.authWrap{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:20px;
}

/* ===== AUTH CARD ===== */
.authCard{
  background:linear-gradient(180deg,#0f1625,#0b1220);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}

.kicker{
  font-size:11px;
  font-weight:900;
  letter-spacing:2px;
  color:#a6ffcc;
}

.headline{
  margin:8px 0;
  font-size:32px;
  font-weight:950;
}

.subhead{
  margin-bottom:16px;
  color:#b7c4ee;
  font-size:14px;
}

/* ===== BUTTONS ===== */
button{
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
}

.btnPrimary{
  width:100%;
  padding:14px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#041007;
  box-shadow:0 14px 30px rgba(0,255,106,.25);
}

.btnSecondary{
  flex:1;
  padding:12px;
  background:#1b233a;
  color:var(--textLight);
  border:1px solid rgba(255,255,255,.14);
}

.btnGhost{
  flex:1;
  padding:12px;
  background:transparent;
  color:var(--textLight);
  border:1px dashed rgba(255,255,255,.25);
}

.row{
  display:flex;
  gap:10px;
  margin-top:10px;
}

/* ===== INPUTS ===== */
.field span{
  display:block;
  font-size:12px;
  font-weight:800;
  margin-bottom:6px;
  color:#dbe3ff;
}

.field input{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:#0b1220;
  color:var(--textLight);
}

.field input::placeholder{
  color:#8893b8;
}

/* ===== SIDE PANEL (FIXED) ===== */
.sideCard{
  background:#f4f6fb;
  color:var(--textDark);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}

.sideTitle{
  font-size:18px;
  font-weight:950;
  margin-bottom:12px;
  color:#0b0f14;
}

.sideList{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.sideList li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.4;
  color:#1a2130;
}

.dot{
  width:10px;
  height:10px;
  border-radius:3px;
  margin-top:4px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
}

/* ===== SIDE PILLS ===== */
.sideFooter{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.pill{
  padding:6px 10px;
  border-radius:999px;
  background:#e9edf8;
  border:1px solid #d5dcf3;
  font-size:12px;
  font-weight:800;
  color:#0b0f14;
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px){
  .authWrap{
    grid-template-columns:1fr;
  }
}
