.login-page {
  padding: 10vh 0;
  background-color: #F6F6F6;
  width: 100%;
  height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  z-index: 1;
  background: #FCA5A5;
  width: auto;
  max-width: 40vw;
  min-height: 70vh;
  padding: 2% 3%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #F9FAFB;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
}

form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #EF4444;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 15px;
  color: #F9FAFB;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  margin-top: 3%;
  font-size: larger;
  font-weight: bold;
}

form button:hover,
.form button:active,
.form button:focus {
  background: #f21d1d;
}

.message {
  color: red;
  margin: 0;
  margin-top: 10px;
  font-size: larger;
  font-weight: bold;
}

form h1 {
  margin-bottom: 1px;
  color: white;
  font-size: 50px;
  margin: 0;
  margin-bottom: 10%;
}

.error {
  margin-top: 0.5rem;
  font-size: 15px;
}

.password {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.password img {
  filter: invert(1);
}

.password button {
  background-color: #f21d1d;
}

/* MODO MOBILE */
@media (max-width: 1000px) {

  form {
    max-width: 90vw;
    min-height: 0;
    height: auto;
    padding: 5%;
  }

  h1 {
    font-size: 40px !important;
  }

  .password input {
    width: 80% !important;
  }

  .password button {
    width: 15% !important;
  }
}