/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
  background: url('https://balavignesh2025.neocities.org/Project/LOGIN%20PAGE/back.jpg') no-repeat center center/cover;
}

.container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(15px);
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  color: #fff;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}

.login-box label {
  font-size: 14px;
  margin: 10px 0 5px;
  display: block;
}

.login-box input[type="email"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 15px;
}

.login-box input::placeholder {
  color: #eee;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 15px;
}

.options label {
  cursor: pointer;
}

.options a {
  color: #fff;
  text-decoration: none;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: #fff;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ddd;
}

.register-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.register-text a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}
