*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Inter,Arial,sans-serif}
body{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  color:#fff;
  background:
    radial-gradient(circle at 20% 10%,rgba(34,211,238,.14),transparent 32%),
    radial-gradient(circle at 85% 80%,rgba(217,70,239,.13),transparent 34%),
    #070b18;
}
.auth-wrap{width:100%;max-width:560px}
.brand{text-align:center;margin-bottom:28px}
.brand img{
  width:230px;
  max-width:72%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 7px 18px rgba(0,0,0,.28));
}
.card{
  padding:38px;
  border:1px solid rgba(103,232,249,.20);
  border-radius:24px;
  background:linear-gradient(135deg,rgba(34,211,238,.075),rgba(117,87,232,.10) 55%,rgba(217,70,239,.075));
  box-shadow:0 22px 70px rgba(2,6,23,.55);
  backdrop-filter:blur(12px);
}
.eyebrow{
  color:#75deeb;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.8px;
  text-transform:uppercase;
  margin-bottom:12px;
}
h1{font-size:32px;line-height:1.15;margin:0 0 14px}
p{color:#cbd5e1;line-height:1.65;margin:0 0 20px}
.status{
  padding:16px 18px;
  margin:22px 0;
  border:1px solid rgba(103,232,249,.18);
  border-radius:14px;
  background:rgba(15,23,42,.72);
  color:#dbeafe;
}
label{display:block;margin:18px 0 8px;font-weight:700;color:#e2e8f0}
input{
  width:100%;
  padding:15px 16px;
  border-radius:12px;
  border:1px solid rgba(117,222,235,.28);
  background:#0b1222;
  color:#fff;
  font-size:16px;
  outline:none;
}
input:focus{
  border-color:#75deeb;
  box-shadow:0 0 0 3px rgba(117,222,235,.12);
}
button,.button{
  display:block;
  width:100%;
  margin-top:20px;
  padding:15px 20px;
  border:0;
  border-radius:12px;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  color:#fff;
  font-weight:800;
  font-size:15px;
  background:linear-gradient(90deg,#22d3ee,#7557e8 58%,#d946ef);
  box-shadow:0 8px 26px rgba(117,87,232,.25);
}
button:disabled{opacity:.55;cursor:wait}
.footer{
  margin-top:24px;
  text-align:center;
  color:#64748b;
  font-size:12px;
}
.hidden{display:none}
.success{border-color:rgba(34,197,94,.35);color:#bbf7d0}
.error{border-color:rgba(248,113,113,.35);color:#fecaca}
@media(max-width:600px){
  .card{padding:28px 22px}
  h1{font-size:27px}
}
