body {
  font-family: Arial, sans-serif;
  margin: 0;
  display: flex; /* Center content vertically */
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Ensure form is visible on all viewports */
  background-color: #f0f0f0; /* Light background */
}

.login-container {
  background-color: #fff; /* White background for form */
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px; /* Adjust width as needed */
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box; /* Include padding in width */
  margin-bottom: 15px;
}

button[type="submit"] {
  background-color: #4CAF50; /* Green */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
}

button[type="submit"]:hover {
  background-color: #45A049; /* Darker green on hover */
}

.error-message {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}

