/* quicksand-500 - latin */
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand-v30-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}
/* quicksand-600 - latin */
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand-v30-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
}
/* quicksand-700 - latin */
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand-v30-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}
:root {
  --background-color: white;
  --hover-color: #316020;
  --active-color: #316020;
  --button-color: white;
  --button-bg-color: black;
  --button-hover-color: white;
  --button-hover-bg-color: #316020;
  --focus-shadow-color: #316020;
  --focus-outline-color: #316020;
}

:root {
  --gutter: 1rem;
  --outer-padding: 1rem;
  --max-width: 37.1875rem;
}
@media only screen and (min-width: 768px) {
  :root {
    --gutter: 2rem;
    --outer-padding: 2.5rem;
  }
}
@media print {
  :root {
    --outer-padding: 0.5rem;
  }
}

:focus {
  outline: 2px dotted rgba(49, 96, 32, 0.75);
}

:focus:not(:focus-visible) {
  outline: none;
}

::-moz-focus-inner {
  border: none;
}

html {
  font-size: 100%;
}

/**
 * @file
 * Utility classes to hide elements in different ways.
 */
/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be collapsible details that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.hidden {
  display: none !important;
}

@media print {
  .print\:hidden {
    display: none !important;
  }
}

/**
 * Hide elements visually, but keep them available for screen readers.
 *
 * Used for information required for screen reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 */
.visually-hidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /**
   * The .focusable class extends the .visually-hidden class to allow
   * the element to be focusable when navigated to via the keyboard.
   */
}
.visually-hidden.focusable:active, .visually-hidden.focusable:focus {
  position: static !important;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout.
 */
.invisible {
  visibility: hidden;
}

.bg-teacher-light {
  background-color: #F9F5EB;
}

.font-body, body {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.font-body, body {
  font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
  .font-body, body {
    font-size: 1.125rem;
  }
}

.font-h6, .font-h5, .font-h4, h4, .font-h3, .font-h2, .font-h1, h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.font-h1, h1 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  .font-h1, h1 {
    font-size: 1.875rem;
    line-height: 1.2666666667;
  }
}

.font-h2 {
  font-size: 1.75rem;
}
@media only screen and (min-width: 1024px) {
  .font-h2 {
    font-size: 2rem;
  }
}

.font-h3 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  .font-h3 {
    font-size: 1.75rem;
  }
}

.font-h4, h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

.font-h5 {
  font-size: 1rem;
}

.font-h6 {
  font-size: 0.9rem;
}

.font-button, .button {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}

.font-label, .form-group__label {
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.button {
  display: inline-block;
  background-color: var(--button-bg-color);
  color: var(--button-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: background-color 250ms ease;
}
.button:disabled {
  opacity: 0.5;
}
@media (hover: hover) and (pointer: fine) {
  .button:not(:disabled):hover {
    color: var(--button-hover-color);
    background-color: var(--button-hover-bg-color);
    --hover-color: var(--button-hover-color);
  }
}
.button:visited {
  color: var(--button-color);
}

.checkbox {
  display: inline-flex;
  flex-shrink: 0;
  height: 1.875rem;
  width: 1.875rem;
  color: #082E36;
  background: white;
  border: 1px solid lightgrey;
  box-shadow: inset 1px 1px 6px rgba(72, 18, 1, 0.5);
  align-items: center;
  justify-content: center;
}
.checkbox__input:not(:disabled) + .checkbox {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .checkbox__input:not(:disabled) + .checkbox:hover {
    color: var(--hover-color);
    border-color: var(--hover-color);
  }
}
.checkbox__input:disabled + .checkbox {
  color: rgba(8, 46, 54, 0.5);
}
.checkbox__input:focus + .checkbox {
  color: var(--hover-color);
  border-color: var(--hover-color);
}
.checkbox__input:not(:checked) + .checkbox .checkbox__check {
  visibility: hidden;
}
.checkbox__label {
  margin-left: 0.5em;
}
.checkbox__wrapper {
  display: flex;
  align-items: center;
}

.input {
  box-shadow: inset 1px 1px 6px rgba(72, 18, 1, 0.5);
  box-sizing: border-box;
  width: 100%;
  background-color: white;
}
@media (hover: hover) and (pointer: fine) {
  .input:hover:not(:disabled) {
    border-color: darkgray;
  }
}
.input:focus {
  border-color: #316020;
  box-shadow: inset 1px 1px 6px rgba(72, 18, 1, 0.5), 0 0 5px rgba(49, 96, 32, 0.7);
  outline: none;
}
.input:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}
.input::-moz-placeholder {
  color: #6b8286;
}
.input::placeholder {
  color: #6b8286;
}

a:not([class]),
.text-link {
  border-bottom: 1px solid currentColor;
  word-break: break-word;
  transition: color 250ms ease;
}
a:not([class]):focus,
.text-link:focus {
  color: var(--active-color);
}
@media (hover: hover) and (pointer: fine) {
  a:not([class]):hover,
  .text-link:hover {
    color: var(--hover-color);
  }
}

.button {
  padding: 0.7777777778em 1.5555555556em;
  border-radius: 100px;
}
.button--secondary {
  --button-bg-color: white;
  --button-color: black;
  border: 1px solid black;
}

.input {
  padding: 10px;
}

a:not([class]),
.text-link {
  padding-bottom: 0.0555555556em;
}

.outer-wrapper {
  padding-inline: var(--outer-padding);
  max-width: calc(var(--max-width) + 2 * var(--outer-padding));
  margin-left: auto;
  margin-right: auto;
}

.form-header {
  margin-top: 2.75rem;
  margin-bottom: 2.25rem;
}

.form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.text-formatted p:not(:last-child) {
  margin-bottom: 1.2em;
}
.text-formatted strong {
  font-weight: 700;
}

.card {
  padding: 2rem 2.5rem;
  background-color: white;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.3);
}

.form-group:not(:last-child) {
  margin-bottom: 1rem;
}
.form-group__label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.form-group__options {
  margin-bottom: 2rem;
}
.form-group__error {
  display: inline-block;
  margin-top: 0.5rem;
  color: #FF0000;
}

.idp-account-section {
  text-align: center;
}
.idp-account-section__list {
  margin-block: 1.5rem;
}
.idp-account-section__list li {
  margin-bottom: 1.5rem;
}

.internal-login {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.internal-login__toggle {
  display: flex;
  align-items: center;
  opacity: 0.75;
}
.internal-login__toggle-icon {
  margin-left: 0.25rem;
  transition: transform 0.25s;
}
.internal-login__toggle.toggle-item__button--active .internal-login__toggle-icon {
  transform: rotate(-180deg);
}
.internal-login__form {
  background-color: #F9F5EB;
  padding: 2.5rem;
  transition: opacity 0.5s;
}
.internal-login__form:not(.toggle-item__content--active):not(.toggle-item--active) {
  visibility: hidden;
  position: absolute;
  border: 0;
  height: 0;
  width: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  white-space: nowrap;
  opacity: 0;
}
.internal-login__form.toggle-item--active, .internal-login__form.toggle-item__content--active {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .internal-login {
    margin-top: 6.25rem;
  }
  .internal-login__form {
    max-width: 30rem;
  }
}

.site-footer {
  margin-top: 3rem;
  padding-bottom: 2.5rem;
  padding-inline: var(--outer-padding);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1rem;
  color: #0079A9;
}
@media only screen and (min-width: 768px) {
  .site-footer {
    margin-top: 5.625rem;
  }
  .site-footer__links {
    flex-direction: row;
    gap: 1.875rem;
  }
}

.site-header {
  margin-block: 2rem 1rem;
}
.site-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__logo {
  height: 100px;
  max-height: 20vh;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .site-header {
    margin-block: 5rem 2.5rem;
  }
  .site-header__logo {
    height: 150px;
  }
}

.subtitle {
  font-size: 0.875rem;
}

.token-login {
  text-align: center;
}
.token-login__error {
  padding: 0.625rem 2.1875rem;
  margin-bottom: 2.5rem;
  background-color: #F7D8DA;
  color: #80273C;
  font-weight: bold;
}
.token-login__input-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}
.token-login__input-separator {
  font-size: 1.25rem;
  font-weight: 600;
}
.token-login__buttons.form-group {
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}
.token-login .form-group__label {
  margin-bottom: 0.5555555556em;
}
.token-login .input {
  font-size: 1.25rem;
  letter-spacing: 0.5em;
  font-weight: 600;
  text-align: center;
  padding: 0.6em 0.75em 0.65em;
  max-width: 8em;
}
@media only screen and (max-width: 767px) {
  .token-login__input-separator {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .token-login__input-row {
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
  }
}
/*# sourceMappingURL=login.css.map */
