*{
  margin:0;
  box-sizing:border-box;
  font-family:Segoe UI, Arial, sans-serif;
}

body{
  height:100vh;
  background:linear-gradient(120deg,#38bdf8,#6366f1);
  display:flex;
  align-items:center;
  justify-content:center;
}

.login-wrapper{
  animation:fadeIn 1.2s ease;
}

.login-card{
  background:white;
  width:380px;
  padding:35px;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
  text-align:center;
}

.login-card h2{
  margin-bottom:8px;
}

.login-card p{
  color:#555;
  margin-bottom:25px;
}

.input-group{
  display:flex;
  align-items:center;
  background:#f1f5f9;
  margin-bottom:15px;
  border-radius:30px;
  padding:12px 18px;
  transition:.3s;
}

.input-group i{
  color:#64748b;
  margin-right:10px;
}

.input-group input,
.input-group select{
  border:none;
  outline:none;
  background:transparent;
  width:100%;
  font-size:14px;
}

.input-group:focus-within{
  background:#e0f2fe;
}

button{
  width:100%;
  padding:12px;
  background:#38bdf8;
  border:none;
  border-radius:30px;
  color:white;
  font-size:16px;
  font-weight:bold;
  cursor:pointer;
  transition:.3s;
  margin-top:10px;
}

button:hover{
  background:#0ea5e9;
  transform:translateY(-2px);
}

.note{
  display:block;
  margin-top:15px;
  font-size:12px;
  color:#666;
}

/* Animation */
@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
