:root{
  --bg:#070A0F;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.6);
  --border:rgba(255,255,255,.10);
  --blue:#39BEF6;
  --radius:22px;
  --shadow:0 18px 70px rgba(0,0,0,.55);
}

*{box-sizing:border-box;}

body{
  margin:0;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  font-family:system-ui,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--text);
}

.login-wrapper{
  width:100%;
  display:flex;
  justify-content:center;
  padding:20px;
}

.login-box{
  width:420px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}

/* Banner */
.login-banner{
  height:140px;
  background:url("https://hexnrik.de/uploads/downloads/dl_69ef95e9e57f61.12080199.png") center/cover no-repeat;
}

/* Content */
.login-content{
  padding:22px;
}

.login-top{
  margin:0;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.15em;
}

.login-title{
  margin:6px 0 0;
  font-size:28px;
}

.login-sub{
  margin:8px 0 18px;
  color:var(--muted);
  font-size:14px;
}

form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}

input:focus{
  border-color:rgba(57,190,246,.4);
}

button{
  margin-top:6px;
  padding:12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(57,190,246,.15);
  color:var(--text);
  cursor:pointer;
  font-weight:600;
}

button:hover{
  background:rgba(57,190,246,.25);
}

.back{
  text-align:center;
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
}

.back:hover{
  color:var(--text);
}