*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
}

.login-container {
  display: flex;
  width: 100%;
  height: 100vh;
}

.choice-login-container {
  background-color: #3E567E;
  color: white;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.choice-login-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  width: 23rem;
}

.choice-login-container p {
  font-size: 1rem;
  text-align: center;
}

.form-login-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.form-login-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

form {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  font-size: 0.9rem;
  color: #333;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 0.8rem;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background-color: #edf2f7;
}

form a {
  font-size: 0.8rem;
  text-decoration: none;
  color: #6E6E6E;
  align-self: flex-end;
  margin-top: -0.5rem;
  text-decoration: underline;
}

form a:hover {
  text-decoration: underline;
}

form input[type="submit"] {
  padding: 0.8rem;
  background-color: #3E567E;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 1rem;
  border-radius: 18px;
}

form input[type="submit"]:hover {
  background-color: #556F9B;
  color: white;
}

.mdp-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
