body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
body {
  background-image: url(../img/bg_for_login.jpg);
  background-size: cover; /* Optional: Adjust the size of the background image */
  background-repeat: no-repeat;
}
.login-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.login-container h2 {
  margin-top: 0;
}

input {
  margin: 10px 0;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button {
  border-radius: 8px !important;
  margin: 0px 10px !important;
  width: 100px !important;
  height: 40px;
  background-color: #3498db;
  color: #fff;
  cursor: pointer;
  border: none;
}
button:hover {
  background-color: #0b6cad;
}

.error-message {
  color: red;
  font-size: 14px;
}
.error-messages {
  color: green;
  font-size: 14px;
}

input {
  width: 300px;
  display: block;
}
