* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.login-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(7, 5, 5, 0.3);
  backdrop-filter: blur(10px);
  width: 90%;
  max-width: 350px;
  color: white;
}

.login-form h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

.login-form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  transition: 0.3s ease;
}

.login-form input:focus {
  background: rgba(255, 255, 255, 0.3);
  outline: none;
}

.login-form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: #00c6ff;
  background: linear-gradient(to right, #0072ff, #00c6ff);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background: linear-gradient(to right, #005bea, #00c6ff);
}

.error {
  background: rgba(255, 0, 0, 0.2);
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-align: center;
}
.checkbox-group {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  font-size: 0.95rem;
  color: #eee;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
}

a{
  text-decoration: none;
  color: wheat;
  font-weight: bold;
}