body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #ddefff; /* Updated to Pastel Blue, you can change this */
}

.login-container {
  display: flex;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 1200px;
  max-width: 95%;
  height: 500px;
}

.login-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.login-logo img {
  max-width: 90%;
  height: 65%;
}

.login-form {
  flex: 1.5;
  padding: 40px;
  background-color: white;
}

.login-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.login-form label,
.login-form input {
  display: flex;
  align-items: center; /* Centers the label and input vertically */
  margin-bottom: 10%;
}

.login-form .form-row {
  display: flex;
  justify-content: space-between;
  width: 80%; /* Adjusts the width of the row to maintain form width consistency */
  margin-bottom: 10px;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  margin-left: 10px; /* Adds space between the label and the input */
  flex-grow: 1; /* Allows the input to fill the space */
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10%;
}

button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 80%;
  /* margin-top: 10%; */
}

button:hover {
  background-color: #0056b3;
}
