body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a0a23, #4a148c, #9575cd, #e0e0f8);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 25px 80px;
  padding-left: 25px;
  border-radius: 25px 25px 25px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  width: 340px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.2s ease;
  text-align: center;
}

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

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
  letter-spacing: 1px;
}
.form-group {
    margin-bottom: 8px;
    position: relative;
  }
  .form-group i {
    position: absolute;
    left: 15px;
    top: 10px;
    color: var(--primary);
  }
  input, select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}
input, select option{
  width: 100%;
  padding: 10px 12px 10px 50px;
  margin-bottom: 18px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

input::placeholder {
  color: #ddd;
}

input:focus, select:focus {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
input::placeholder {
  color: #ddd;
}
input[type="submit"] {
  background: linear-gradient(90deg, #6a5acd, #9575cd);
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  width: 100%;
}

input[type="submit"]:hover {
  background: linear-gradient(90deg, #5b4ec2, #7e57c2);
  transform: translateY(-2px);
}
p{
  margin: 0px;
  border: 0px;
  padding: 0px;
  text-decoration: none;
  margin-bottom: 10px;
}
p a{
  color: #ddd;
  text-decoration: none;
  text-align: center;
  padding: 2px;
}

    .toggle:hover {
      color: #ffd700;
    }