* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
    
  height: 100vh;
  background: linear-gradient(to right,#3a0ca3, #7209b7,#f72585,#4361ee);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  width: 100%;
  max-width: 400px;
}

.login-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
}

.avatar {
  width: 80px;
  height: 80px;
  background: #ffffff40;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/847/847969.png');
  background-size: cover;
  background-position: center;
}

.login-box h2 {
  color: white;
  margin-bottom: 20px;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  outline: none;
  background: #ffffff20;
  color: white;
}

.login-box input::placeholder {
  color: #eee;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  margin-bottom: 20px;
  color: #ddd;
}

.options a {
  color: #ddd;
  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}

.login-box button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #ff416c, #6a5acd);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-box button:hover {
  background: linear-gradient(to right, #ff4b2b, #5f27cd);
}