@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.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%;
}

body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-family: "Titillium Web", sans-serif;
  overflow: hidden;
  margin: 0px 8px 0px 0px;
  z-index: 5;
}

.logoWrapper {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
}
.logoWrapper .logo {
  width: 100%;
  min-height: 600px;
  color: #fffff;
  font-size: 18px;
  height: 100%;
  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: 600px;
  margin: 0% 5%;
}
.logoWrapper .logo-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(49, 54, 64, 0.95);
  width: 100%;
  height: 100%;
  z-index: 2;
  border-top-right-radius: 5%;
  border-bottom-right-radius: 5%;
  position: absolute;
}

.loginWrapper {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.loginWrapper #changeForm {
  width: 300px;
}
.loginWrapper .message {
  margin-bottom: 10px;
}
.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 .loginGraphic {
  width: 300px;
  background-image: url("/img/login.png");
  background-size: cover;
  height: 110px;
  margin-bottom: 22px;
}
.loginWrapper .title {
  font-size: 26px;
  font-weight: 500;
  color: #1A1818;
  width: 100%;
  text-align: left;
  margin-bottom: 21px;
}
.loginWrapper .subtitle {
  width: 500px;
  color: #C7C9CB;
  margin-bottom: 20px;
}
.loginWrapper .inputWrapper {
  margin-bottom: 25px;
}
.loginWrapper .inputLabel {
  font-size: 14px;
  color: #818386;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.loginWrapper input {
  width: 300px;
  border: none;
  border-bottom: 1px solid #d5d5d5;
  font-size: 14px;
  font-family: "Titillium Web", sans-serif;
  color: #818386;
}
.loginWrapper .forgotPassword {
  color: #C8202F;
}
.loginWrapper .buttonContainer {
  display: flex;
  justify-content: space-between;
}
.loginWrapper a {
  text-decoration: none;
  color: #C8202F;
}
.loginWrapper a:visited {
  color: #C8202F;
}
.loginWrapper .linkWrapper {
  margin-top: 25px;
}
.loginWrapper a:hover {
  color: #A81825;
}

@media only screen and (max-width: 799px) and (min-width: 300px) {
  .logoWrapper {
    display: none;
  }

  .loginWrapper {
    width: 100%;
  }
  .loginWrapper .subtitle {
    padding: 0px 15px;
    width: auto;
  }
  .loginWrapper .title {
    text-align: center;
  }
  .loginWrapper .buttonContainer {
    justify-content: center;
  }
  .loginWrapper .recoverInput {
    padding: 0px 15px;
  }
  .loginWrapper input {
    width: 100%;
  }
}

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