@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  background: linear-gradient(-45deg, #e0f2f1, #9bdd9d, #d2eed5, #bbeabd);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.auth-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 25px;
  color: #2e7d32;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  text-align: left;
  margin-top: 10px;
  font-weight: 500;
  color: #388e3c;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  margin-top: 5px;
  border-radius: 5px;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #43a047;
}

.forgot {
  text-align: right;
  margin-top: 8px;
}

.forgot a,
.switch a {
  color: #1b5e20;
  font-size: 0.9rem;
  text-decoration: none;
}

.switch {
  margin-top: 15px;
  font-size: 0.9rem;
}
