.login{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}

.auth-card{
  width:100%;
  max-width:450px;
  padding:60px;
  border-radius:25px;
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,0,150,0.25);
  box-shadow:0 0 60px rgba(255,0,150,0.25);
  color:white;
}

.auth-card h2{
  text-align:center;
  margin-bottom:35px;
  font-weight:600;
}

.input-group{
  margin-bottom:22px;
}

.input-group label{
  font-size:13px;
  opacity:.8;
}

.input-group input{
  width:100%;
  padding:13px;
  margin-top:6px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  color:white;
  outline:none;
  transition:0.3s;
}

.input-group input:focus{
  border:1px solid #ff008c;
  box-shadow:0 0 12px #ff008c;
}

.btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#ff008c,#8e2de2);
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #ff008c;
}

.footer{
  margin-top:25px;
  text-align:center;
  font-size:14px;
}

.footer a{
  color:#ff4dd2;
  text-decoration:none;
}

@media (max-width:900px){
  .auth-card{
    padding:40px 30px;
  }
}