/* auth.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f7fc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-size: 14px;
  color: #555;
}

/* Targeting text input, email input, password input, and text area */
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

button[type="submit"] {
  padding: 12px;
  background-color: #007bff; /* Blue color */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

button.register-btn {
  padding: 12px;
  background-color: #28a745; /* Green color for Register */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

button.register-btn:hover {
  background-color: #218838; /* Darker green on hover */
}

.form-links {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.form-links a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.form-links a:hover {
  text-decoration: underline;
}

button a {
  text-decoration: none;
  color: white;
}

button a:hover {
  color: #f1f1f1;
}
