body{
  margin:0;
  font-family:Inter,Arial;
  background:linear-gradient(135deg,#050714,#0a1a3a);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  height:100vh;
}

.auth-box{
  width:100%;
  max-width:420px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(20px);
  border-radius:20px;
  padding:40px;
  box-shadow:0 0 40px rgba(0,0,0,0.6);
}

.auth-box h2{
  text-align:center;
  margin-bottom:25px;
  font-size:28px;
  background:linear-gradient(45deg,#4facfe,#00f2fe);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

input{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid #333;
  background:#050714;
  color:#fff;
  margin-bottom:15px;
}

button{
  width:100%;
  padding:14px;
  border-radius:30px;
  border:none;
  background:linear-gradient(45deg,#4facfe,#00f2fe);
  font-weight:bold;
  font-size:16px;
  cursor:pointer;
}

.auth-link{
  text-align:center;
  margin-top:15px;
}

.auth-link a{
  color:#4facfe;
  text-decoration:none;
}
