.login__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo img {
  width: 50%;
}

.login {
  width: 90%;
  height: fit-content;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #ffffff;
  gap: 15px;
}

.login h1 {
}

.login form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login form label {
  font-size: calc(16 / 16 * 1rem);
  font-weight: bold;
  margin-bottom: -10px;
}

.login form input {
  font-size: calc(16 / 16 * 1rem);
  padding: 5px 15px;
  border-radius: 5px;
  outline: none;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.login form button {
}

.login a {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: calc(16 / 16 * 1rem);
}

.mensagem__erro {
  font-size: calc(14 / 16 * 1rem);
  font-weight: bold;
  margin-top: -10px;
  color: red;
  text-align: center;
}
