/* Ensure the login-container occupies the full page and center content */
.login-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%; /* Full width */
  height: 100%; /* Full height to occupy the entire viewport */
  box-sizing: border-box;
}

h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

/* Input Fields */
input[type="text"],
input[type="password"] {
  width: 100%;
  max-width: 400px; /* Optional: constrain input width for readability */
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f1f5ff; /* Light blue background for input fields */
}

/* Ensure labels are displayed as block elements */
form label {
  display: block;
  margin-bottom: 5px; /* Optional: Adds some space between the label and the input */
}

/* Button Styling */
button[type="submit"] {
  width: 100%;
  max-width: 400px; /* Optional: match input width */
  padding: 10px;
  background-color: #c8102e;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #a00b23;
}

/* Error Message */
#error-message {
  margin-top: 10px;
  font-size: 14px;
  color: red;
}
