@charset "UTF-8";
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: 48%;
  height: 100%;
  display: flex;
  align-items: center;
}
.logoWrapper .logo {
  width: 100%;
  min-height: 600px;
  color: white;
  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: #BFCFCB;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-top-right-radius: 5%;
  border-bottom-right-radius: 5%;
  position: absolute;
}

.loginWrapper {
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.loginWrapper .change-password-form {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 250px;
}
.loginWrapper .change-password-form .form-actions {
  margin-top: 25px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.loginWrapper #changeForm {
  width: 300px;
}
.loginWrapper .message {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
.loginWrapper .message.error {
  color: #C8202F;
}
.loginWrapper .message.success {
  color: #E0AF58;
}
.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 #E0AF58;
  display: block;
}
.loginWrapper .registerForm input[type=checkbox]:checked:before {
  content: "✓";
  color: white;
  font-size: 16px;
  background-color: #E0AF58;
  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 #E0AF58;
}
.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: 33px;
  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: 18px;
  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;
}

button {
  cursor: pointer;
  border-radius: 6px;
  width: max-content;
}
button.standard {
  padding: 4px 24px;
  color: white;
  font-size: 15px;
  height: fit-content;
}
button.standard.yellow {
  background-color: #e3b159;
  border: 1px solid #e3b159;
}
button.standard.yellow:hover {
  background-color: #ca8a28;
  border: 1px solid #ca8a28;
}

@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 */
