body{
  background-color: #F8FAFC;"
}

.login-page {
  width: 100%;
  height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 11vh;
}

.login-page p {
  color: grey;
  margin: 0;
}

.tittle h1 {
  color: #1E293B;
  margin: 0;
  font-size: 40px;
  font-weight: bold;
}

.tittle p {
  margin-top: 10px;
  margin-bottom: 40px;
}

form {
  z-index: 1;
  background: #FFFFFF;
  width: auto;
  max-width: 40vw;
  /* min-height: 70vh; */
  padding: 2% 3%;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

/* Inputs */
form input {
  outline: 0;
  background: #FFFFFF;
  width: 100%;
  border: solid 2px #E2E8F0;
  margin: 0 0 15px;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Botón principal */
form>button[type="submit"] {
  text-transform: uppercase;
  background: #6366F1;
  width: 100%;
  color: #F9FAFB;
  cursor: pointer;
  margin-top: 3%;
  /* font-size: larger; */
  font-weight: bold;
  transition: 0.3s;
  height: 40px;
}

form>button[type="submit"]:hover,
form>button[type="submit"]:focus,
form>button[type="submit"]:active {
  background: #4F46E5;
  color: white;
}

/* Mensajes */
#msg-error {
  font-size: larger;
  font-weight: bold;
  color: red !important;
}

.password {
  position: relative;
  width: 100%;
}

.password input {
  padding-right: 50px;
  margin-bottom: 15px;
}

.password button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-75%);

  width: 32px;
  height: 32px;

  padding: 0;
  margin: 0;

  border: none;
  background: transparent;
  box-shadow: none;
  outline: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.password button:hover,
.password button:focus,
.password button:active {
  background: transparent;
}

.password #eyeIcon {
  font-size: 24px;
  color: #64748B;
}

p.guideAccount {
  margin-top: 10px;
  margin-bottom: 0;
}

p.guideAccount a {
  color: #6366F1 !important;
  cursor: pointer;
}

p.guideAccount a:hover {
  color: #4F46E5 !important;
  font-weight: bold !important;
  transition: 0.1s;
}

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.remember input {
  height: 20px;
  width: 20px;
  /* background-color: #6366F1; */
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-color: lightgrey !important;
  border: solid 2px;
}

.remember input:hover {
  scale: 1.05;
}

/* .remember input:hover, */
.remember input:checked {
  background-color: #6366F1;
  border: none;
}

.remember input:focus {
  box-shadow: none;
}

.guideAccount .br {
  display: none;
}

/* Mobile */

@media (max-width: 1000px) {

  form {
    max-width: 90vw;
    min-height: auto;
    height: auto;
    padding: 5%;
  }

  .login-page h1 {
    font-size: 40px;
  }

  .guideAccount .br {
    display: block;
  }

}