/* login.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f0fff0; /* light green */
  color: #003300; /* dark green text */
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #006600; /* green nav */
  color: white;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

.auth-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  width: 350px;
}

.auth-container h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-container input,
.auth-container select {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.auth-container button {
  width: 100%;
  padding: 0.7rem;
  background-color: #009900;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.auth-container button:hover {
  background-color: #006600;
}

#signupMessage {
  margin-top: 1rem;
  color: red;
  text-align: center;
}
