html {
  height: 100%; }

* {
  box-sizing: border-box; }

body {
  background-color: #2d3038;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: Titillium Web, sans-serif !important;
  color: #535353; }

form > div {
  margin-bottom: 15px; }

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; }
    button.standard.blue {
      background-color: #313640 !important;
      border: 1px solid #313640; }
    button.standard.blue:hover {
      background-color: #ffffff !important;
      color: #313640;
      border: 1px solid #313640; }

.logoWrapper {
  max-width: calc(100% - 30px); }
  .logoWrapper .logo {
    width: 100%;
    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: 100%; }
  .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 {
  max-width: calc(100% - 30px); }
  .loginWrapper .recoverInput {
    display: grid;
    place-items: center; }
    .loginWrapper .recoverInput input {
      height: 35px;
      border-radius: 5px; }
  .loginWrapper .loginForm {
    width: 400px;
    max-width: 100%;
    height: 400px;
    padding: 25px 10px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px; }
    .loginWrapper .loginForm form {
      width: calc(100% - 30px); }
  .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: 15px;
    font-weight: bold;
    text-align: center; }
  .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: '\2713';
      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: 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; }

@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 */
