/*Login*/
#loginPage, #changePwPage, #AutoLogin, #forgotPassword {
  position: absolute;
  width: 90vw;
  max-width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Varela", Montserrat;
}

#termsApproval{
  position: absolute;
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Varela", Montserrat;
}

#termsButtons {
  transform: translate(-50%);
  width: 50%;
  display: flex;
  justify-content: space-between;
}

#approve, #back{
  width: 45%;
  height: 40px;
  background: #2c5078;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #2c5078;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.login-block {
  padding: 5%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15), 0 1px 0 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 0.8rem;
}
.login-block form {
  width: 100%;
}
.login-block h1 {
  text-align: center;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.login-block input {
  width: 100%;
  height: 42px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 0 20px 0 50px;
  outline: none;
}
.login-block input:active {
  border: 1px solid #107dcf;
}
.login-block input:focus {
  border: 1px solid #107dcf;
}
.login-block input#pin {
  padding: 0 10px;
}
.login-block input#username {
  background: #fff url("../images/loginun.png") 20px top no-repeat;
  background-size: 16px 80px;
}
.login-block input#username:focus {
  background: #fff url("../images/loginun.png") 20px bottom no-repeat;
  background-size: 16px 80px;
}
.login-block button {
  width: 100%;
  height: 40px;
  background: #2c5078;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #2c5078;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}
.login-block button:hover {
  color: white;
  border: 1px solid white;
}

.wrapperForSpan {
  position: relative;
}
.wrapperForSpan span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: medium;
}
.wrapperForSpan #pwVisibility {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: medium;
}
.wrapperForSpan .visibilityIcon {
  color: grey;
}
.wrapperForSpan .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 200, "opsz" 48;
}

#pinCode {
  display: none;
}

#loginStatus, #loginStatus-init-error {
  color: red;
  text-align: center;
}

#loginStatus-init-error {
  margin-bottom: 1rem;
}

#title {
  font-size: 24px;
}

#forgotPass, #newUser {
  margin-right: 2%;
  text-decoration: none;
  color: black;
  text-align: center;
}
#forgotPass:hover, #newUser:hover {
  color: #107dcf;
}

#beforeLogin {
  display: none;
}

#spinner-page-loading {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  color: white;
}

@media screen and (max-width: 768px) {
  body {
    overflow: hidden;
    height: 100vh;
  }
}

/*# sourceMappingURL=login.css.map */
