:root{
  --bg:#0b0f1a;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:#e9eefc;
  --muted:rgba(233,238,252,.75);
  --accent:#7c5cff;
  --accent2:#25d366;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--text);background:
  radial-gradient(1200px 600px at 20% 10%, rgba(124,92,255,.22), transparent 60%),
  radial-gradient(900px 500px at 90% 20%, rgba(37,211,102,.12), transparent 55%),
  radial-gradient(900px 700px at 50% 120%, rgba(255,255,255,.08), transparent 60%),
  var(--bg);
  min-height:100vh;
}
a{color:var(--text);text-decoration:none;opacity:.9}
a:hover{opacity:1;text-decoration:underline}
.authBody{display:flex;align-items:center;justify-content:center;padding:28px}
.authWrap{width:100%;max-width:460px}
.authCard{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
  backdrop-filter: blur(10px);
}
.brandTop{display:flex;gap:12px;align-items:center;margin-bottom:12px}
.logoDot{width:18px;height:18px;border-radius:7px;background:var(--accent);box-shadow:0 0 0 6px rgba(124,92,255,.15)}
.brandName{font-weight:800;letter-spacing:.2px}
.brandSub{font-size:12px;color:var(--muted)}
.blockTitle{font-size:18px;font-weight:800;margin:10px 0 14px}
.form{display:flex;flex-direction:column;gap:10px;margin-top:12px}
label{font-size:12px;color:var(--muted)}
input{
  width:100%;padding:12px 12px;border-radius:14px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus{border-color:rgba(124,92,255,.55);box-shadow:0 0 0 4px rgba(124,92,255,.18)}
.btnPrimary{
  margin-top:6px;
  border:0;cursor:pointer;
  background:linear-gradient(135deg, var(--accent), rgba(124,92,255,.65));
  color:white;font-weight:800;
  padding:12px 14px;border-radius:14px;
}
.btnPrimary:hover{filter:brightness(1.05)}
.sep{display:flex;align-items:center;gap:10px;margin:14px 0}
.sep:before,.sep:after{content:"";flex:1;height:1px;background:var(--border)}
.sep span{font-size:12px;color:var(--muted)}
.authLinks{display:flex;justify-content:space-between;margin-top:12px;font-size:13px}
.msg{margin-top:12px;color:#fff;opacity:.9;font-size:13px}
.miniNote{font-size:12px;color:var(--muted);margin-top:4px}
