:root{
  --bg:#0b1220;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:#e7eefc;
  --muted:rgba(231,238,252,.70);
  --accent:#4f8cff;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
}

*{box-sizing:border-box}
body.login-page{
  margin:0; min-height:100vh;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(79,140,255,.20), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(0,255,209,.10), transparent 55%),
    var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}

.login-wrap{width:100%; max-width:520px;}
.login-card{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:26px;
}

.login-hero{
  width:100%;
  display:flex;
  justify-content:center;
  margin-bottom:14px;
}
.login-hero img{
  max-width:160px;
  height:auto;
  border-radius:18px;
}

.login-title{font-size:22px; font-weight:900; margin:0 0 4px;}
.login-sub{color:var(--muted); margin:0 0 18px;}

.login-error{
  background: rgba(255,74,74,.12);
  border:1px solid rgba(255,74,74,.35);
  color: rgba(255,220,220,.95);
  padding:10px 12px;
  border-radius:14px;
  margin-bottom:14px;
  font-size:13px;
}

.login-form label{display:block; font-weight:700; margin:10px 0 6px;}
.login-form input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
.login-form input:focus{
  border-color: rgba(79,140,255,.55);
  box-shadow: 0 0 0 4px rgba(79,140,255,.18);
}

.login-actions{margin-top:14px;}
.login-actions button{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(79,140,255,.35);
  background: linear-gradient(180deg, rgba(79,140,255,.28), rgba(79,140,255,.12));
  color: var(--text);
  font-weight:900;
  cursor:pointer;
}
.login-actions button:hover{filter:brightness(1.06); transform: translateY(-1px);}

.login-footer-note{
  margin-top:14px;
  color: var(--muted);
  font-size:12px;
  text-align:center;
}
