:root {
  --colorBlue: #2268d5;
}

body {
  background: rgb(174, 198, 238);
  background: radial-gradient(
    circle,
    rgba(174, 198, 238, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}
.log-conteiner {
  margin: auto;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

#login {
  max-width: 300px;
  border: 1px solid #d6d7da;
  padding: 0px 15px 15px 15px;
  border-radius: 5px;
  font-family: arial;
  line-height: 16px;
  color: #333333;
  font-size: 14px;
  background-color: #eee;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  position: relative;
}

#loginImg {
  width: 40%;

  margin-bottom: 0.5em;
}
form label {
  font-weight: bold;
  margin-bottom: 0.5em;
}
form label,
form input {
  display: block;
  width: 90%;
}
form input {
  border: none;
  padding: 10px;
  outline: none;
  margin: none;
}

button {
  cursor: pointer;
}
form {
  width: 90%;
}
.button {
  background-color: var(--colorBlue);
  font-weight: bold;
  padding: 12px 15px;
  width: 100%;
  color: #ffffff;
  border: none;
  margin-top: 1em;
}

.errorMsg {
  color: #cc0000;
  margin-bottom: 10px;
  background-color: #fff4f5;
  padding: 0.7em;
  width: 95%;
}

.okMsg {
  color: #396265;
  background-color: #d8faf3;
  padding: 0.5rem;
  width: 100%;
  border: 1px solid #38b2ab;
}

#login form .userDateForm {
  position: relative;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #ffffff;
  padding: 0.7em;
  border-radius: 5px;
  margin-bottom: 1em;
}
#login form .userDateForm img {
  width: 20px;
}

.userDateForm #eyesPassword {
  cursor: pointer;
}

button:disabled {
  color: #333333;
  border: none;
  padding: 0.9em;
  border: 1px solid #bfbbbb;
  background-color: #eee;
  cursor: auto;
}

/* 
RECUPERAR */

.forgot,
.no-forgot {
  border: none;

  color: #2268d5;
}

.no-forgot {
  font-weight: bold;
  border: 1px solid #d6c8c8;
  padding: 1em;
  width: 100%;
}

.form-login,
.recovery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1em;
  flex-direction: column;
  gap: 1em;
  transition: 0.35s ease-in;
  opacity: 1;
}
.recovery h2 {
  text-align: center;
  font-size: 1.2rem;
}

.login-active {
  display: none;
  opacity: 0;
}

.recovery-pass {
  position: absolute;
  background-color: #eee;
  width: 100%;
  height: 100%;
  border: none;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.recovery-pass h2 {
  text-align: center;
  line-height: initial;
}

.recovery-pass p {
  font-size: 1rem;
  line-height: 1.1rem;
}

.recovery-pass .button {
  width: 60%;
  text-align: center;
}
.recoveryLoad{
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #c4e6ff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  padding: 1px;
  display: block;
  margin: auto;
  animation: recoveryLoad 0.48s linear infinite;
}

@keyframes recoveryLoad {
  to {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}
