@charset "UTF-8";
/* Used in agent/scss, agent_onboarding */
/* Used in agent_onboarding, Login */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 6px;
  width: max-content;
}

.standard {
  padding: 4px 24px;
  color: white;
  font-size: 15px;
  height: fit-content;
}
.standard.smaller {
  font-size: 14px;
}
.standard i {
  margin-left: 8px;
}
.standard.red {
  background-color: #C8202F;
  border: 1px solid #C8202F;
}
.standard.red:hover {
  background-color: #A81825;
  border: 1px solid #A81825;
}
.standard.blue {
  background-color: #313640;
  border: 1px solid #313640;
}
.standard.blue:hover {
  background-color: #4A505C;
  border: 1px solid #4A505C;
}
.standard.gray {
  background-color: #707070;
  border: 1px solid #707070;
}
.standard.gray:hover {
  background-color: #535353;
  border: 1px solid #535353;
}
.standard.gray.reverse {
  background-color: white;
  color: #707070;
  border: 1px solid transparent;
}
.standard.gray.reverse.back i {
  margin-right: 8px;
  margin-left: 0;
}
.standard.gray.reverse:hover {
  border: 1px solid #707070;
}
.standard.mustard {
  background-color: #E3b158;
  border: 1px solid #E3b158;
}
.standard.mustard:hover {
  background-color: #D0A259;
  border: 1px solid #D0A259;
}
.standard.mustard.outline {
  background-color: white;
  color: #E3b158;
  border: 1px solid #E3b158;
}
.standard.mustard.outline:hover {
  background-color: #E3b158;
  color: white;
}
.standard.clear {
  background: transparent;
  color: #999999;
  border: 1px solid transparent;
}
.standard.clear:hover {
  border: 1px solid #999999;
}
.standard.white {
  color: white;
  border: 1px solid white;
}

html {
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #E0AF58;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 93vh;
  font-family: Titillium Web, sans-serif !important;
  color: #535353;
}

form > div {
  margin-bottom: 15px;
}

.logoWrapper .logo {
  width: 100%;
  color: white;
  font-size: 18px;
  height: 200px;
  border-top-right-radius: 5%;
  border-bottom-right-radius: 5%;
  z-index: 1;
  position: relative;
  /* background-image: url("/img/login-background.jpg"); */
  background-size: 150% auto;
  background-repeat: no-repeat;
}
.logoWrapper .logo img {
  max-width: 400px;
}
.logoWrapper .logo-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #BFCFCB;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-top-right-radius: 5%;
  border-bottom-right-radius: 5%;
  position: absolute;
}

.loginWrapper .recoverInput {
  display: grid;
  place-items: center;
}
.loginWrapper .recoverInput input {
  height: 35px;
  border-radius: 5px;
}
.loginWrapper .loginForm {
  width: 400px;
  height: 400px;
  padding: 25px 10px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}
.loginWrapper .change-password-form {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loginWrapper .change-password-form .form-actions {
  margin-top: 25px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.loginWrapper #changeForm {
  width: 300px;
}
.loginWrapper .message {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.loginWrapper .message.error {
  color: #C8202F;
}
.loginWrapper .message.success {
  color: #E3b158;
}
.loginWrapper .errorDisplay, .loginWrapper #errorDisplay {
  font-size: 13px;
  color: #C8202F;
  height: 20px;
}
.loginWrapper .registerForm {
  width: 350px;
}
.loginWrapper .registerForm .inputContainer {
  margin-bottom: 12px;
  width: 100%;
}
.loginWrapper .registerForm .inputContainer input {
  width: 100%;
}
.loginWrapper .registerForm input[type=checkbox] {
  height: 24px;
  width: 24px;
  appearance: none;
  border: 1px solid #E3b158;
  display: block;
}
.loginWrapper .registerForm input[type=checkbox]:checked:before {
  content: "✓";
  color: white;
  font-size: 16px;
  background-color: #E3b158;
  height: 18px;
  width: 12px;
  display: block;
  padding: 0px 6px 4px 6px;
}
.loginWrapper .registerForm .agreeCheckbox {
  margin-right: 5px;
}
.loginWrapper .registerForm .terms {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.loginWrapper .registerForm a {
  border-bottom: 1px solid #E3b158;
}
.loginWrapper .registerForm #schoolCaptcha {
  margin-bottom: 32px;
  height: 78px;
}
.loginWrapper .title {
  font-size: 30px;
  font-weight: 500;
  color: #1A1818;
  width: 100%;
  text-align: center;
  margin-bottom: 21px;
}
.loginWrapper .subtitle {
  width: 300px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 15px;
}
.loginWrapper .inputWrapper {
  margin-bottom: 25px;
}
.loginWrapper .inputWrapper .twoFA::placeholder {
  text-align: center;
  letter-spacing: 4px; /* For the dashes to be properly spaced */
}
.loginWrapper .inputWrapper input {
  height: 35px;
  border-radius: 5px;
}
.loginWrapper .inputWrapper .twoFA {
  height: 35px;
  border-radius: 5px;
  text-align: center; /* This centers the actual input text */
}
.loginWrapper .inputLabel {
  font-size: 18px;
  color: #818386;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.loginWrapper input {
  width: 300px;
  border: 1px solid #D5D5D5;
  font-size: 14px;
  font-family: "Titillium Web", sans-serif;
  color: #818386;
}
.loginWrapper input::placeholder {
  font-size: 14px;
  font-family: "Titillium Web", sans-serif;
  color: #818386;
}
.loginWrapper .forgotPassword {
  color: #313640;
  font-size: 15px;
}
.loginWrapper .forgotPassword:hover {
  color: #4A505C;
  cursor: pointer;
}
.loginWrapper .buttonContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.loginWrapper a {
  text-decoration: none;
  color: #313640;
}
.loginWrapper a:visited {
  color: #313640;
}
.loginWrapper .linkWrapper {
  margin-top: 25px;
}
.loginWrapper a:hover {
  color: #4A505C;
  cursor: pointer;
}

@media only screen and (max-width: 799px) and (min-width: 300px) {
  .loginWrapper .subtitle {
    padding: 0px 15px;
    width: auto;
  }
  .loginWrapper .title {
    text-align: center;
  }
  .loginWrapper .buttonContainer {
    justify-content: center;
  }
  .loginWrapper .recoverInput {
    display: grid;
    place-items: center;
  }
  .loginWrapper .recoverInput input {
    height: 35px;
    border-radius: 5px;
  }
  .loginWrapper input {
    width: 100%;
  }
  .loginWrapper .twoFA {
    width: 100% !important;
  }
}

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