* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(120deg, #09e038, #2114d8, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.auth-box {
  background: #fff;
  padding: 40px 35px;
  width: 400px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.auth-box h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.auth-box form input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 10px 5px;
  margin-bottom: 25px;
  font-size: 15px;
  outline: none;
}

.auth-box form input:focus {
  border-color: #00c853;
}

.auth-box button {
  width: 100%;
  background: #00c853;
  border: none;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.auth-box button:hover {
  background: #00a844;
}

.auth-box p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.auth-box a {
  color: #00c853;
  text-decoration: none;
  font-weight: 500;
}

.auth-box a:hover {
  text-decoration: underline;
}

.message {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

.success {
  color: green;
}

.error {
  color: red;
}
