.login-container {
  background-color: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 300px;
  margin: 0 auto; /* Centers horizontally */
  position: absolute;
  text-align: center;
  top: 50%; /* Moves it down 50% from the top */
  left: 50%; /* Moves it right 50% from the left */
  transform: translate(-50%, -50%); /* Offsets it by 50% of its own width and height, centering it */
}

/* Login Form Styling */
.login-container form {
  display: flex;
  flex-direction: column;
}

/* Login Form Labels */
.login-container label {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

/* Login Form Inputs */
.login-container input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Login Button */
.login-container button {
  margin-top: 20px;
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #0056b3;
}

/* Login Message */
.login-message {
  margin-top: 15px;
  color: red;
  font-weight: bold;
  text-align: center;
}