﻿/** Main Content */
html {
  font-size: 62.5%;
  font-family: 'Muli', sans-serif; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1.6rem;
  margin: 0;
  background: #005984; }

* {
  box-sizing: border-box; }

.main-background, .main-content, .twofactor-auth {
  background-image: linear-gradient(rgba(0, 89, 132, 0.8), rgba(0, 89, 132, 0.8)), url(../assets/background-image-grayscale.png);
  background-size: cover; }

.main-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 9rem; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .main-content {
      min-height: 100vh; } }

.navbar {
  border-radius: 0;
  height: 48px;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10; }
  .navbar-logo {
    width: 113px;
    height: 24px;
    margin: 12px 8px;
    align-self: center;
  }

.text--left {
  text-align: left; }

.text--right {
  text-align: right; }

.text--center {
  text-align: center; }

.modal-link:hover {
  cursor: pointer;
  color: #FF4713; }

.form {
  width: 100%; }
  .form .form-group {
    padding: 1rem 0; }
    .form .form-group--checkbox {
      display: flex;
      flex-direction: row; }
      .form .form-group--checkbox > label {
        padding-left: 5px;
        margin-bottom: 0.1rem; }
        .form .form-group--checkbox > label:hover {
          cursor: pointer; }
  .form .form-label,
  .form .form-control {
    display: block; }
  .form .form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(56, 57, 67, 0.5);
    font-family: inherit;
    font-size: 1.6rem; }
    .form .form-control--error {
      border: 1px solid #FF4713; }
  .form .form-label {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 500; }
  .form .field-error {
    color: #FF4713;
    font-size: 1.3rem;
    padding-top: 0.5rem; }

.button-group {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0 !important;
  padding-top: 3rem; }
  .button-group--centered {
    justify-content: center; }

.link {
  font-size: 1.6rem;
  text-decoration: none;
  color: #383943; }
  .link:visited {
    color: #383943; }
  .link:hover {
    color: #FF4713; }

.primary-header {
  font-size: 3.6rem;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 0 2rem 0;
  align-self: center; }

.button {
  border: none;
  font-size: 1.4rem;
  font-family: inherit;
  padding: 0.5rem 3rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.1s;
  height: 3rem; }
  .button::after {
    content: '';
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.1s;
    display: block;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    height: 0.5rem;
    background: rgba(0, 0, 0, 0.25); }
  .button--primary {
    background-color: #FF4713; }
  .button:hover, .button:focus {
    transform: translateY(-0.5rem); }
    .button:hover::after, .button:focus::after {
      transform: scaleY(1); }
  .button:active {
    transition: none;
    transform: translateY(0rem); }
    .button:active::after {
      display: none; }
  .button--working {
    position: relative;
    padding-right: 40px; }
    .button--working:before {
      content: "";
      width: 0;
      height: 0;
      border-radius: 50%;
      right: 6px;
      top: 50%;
      position: absolute;
      border: 2px solid transparent;
      border-right: 3px solid #FFFFFF;
      animation: rotate360 .5s infinite linear, exist .1s forwards ease; }

@keyframes rotate360 {
  100% {
    transform: rotate(360deg); } }

@keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0; } }

.validation-summary {
  color: #FF4713;
  font-size: 1.4rem;
  font-weight: 400;
  padding-top: 1rem; }
  .validation-summary ul {
    margin: 0;
    padding: 0; }
    .validation-summary ul li {
      list-style: none; }

.form-container {
  background-color: #FFFFFF;
  padding: 4rem;
  width: 43rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 4px 0 #000000; }

.password-requirement-list {
  padding-left: 0.3rem;
  margin: 0; }
  .password-requirement-list .password-requirement {
    list-style: none;
    font-weight: 400;
    font-size: 1.3rem; }
    .password-requirement-list .password-requirement.valid {
      color: #5EB700; }
      .password-requirement-list .password-requirement.valid::before {
        content: '\2714';
        margin-right: 0.5rem;
        font-weight: 600; }
    .password-requirement-list .password-requirement.invalid {
      color: #FF4713; }
      .password-requirement-list .password-requirement.invalid::before {
        content: '\1F5D9';
        margin-right: 0.5rem;
        font-weight: 600; }

.forgot-password__confirmation {
  text-align: center; }

a.button {
  text-decoration: none;
  display: inline-block; }

button.link {
  background: none;
  border: none;
  padding: 0;
  /*input has OS specific font-family*/
  color: #0000ee;
  text-decoration: underline;
  cursor: pointer; }

.error-container {
  background: white; }

.error {
  color: #FF4713;
  text-align: center;
  margin: 1rem; }
  .error__name {
    font-weight: bold; }

.bold {
  font-weight: 600; }

.back-button-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 2rem 0; }
  .back-button-container .back-button {
    margin-right: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    text-decoration: none;
    color: black;
    border-radius: 50%; }
    .back-button-container .back-button:hover {
      background: rgba(0, 0, 0, 0.25); }
  .back-button-container .username-display {
    font-size: 1.8rem;
    word-break: break-all; }

.material-icons.md-18 {
  font-size: 1.8rem; }

.saml-error-message {
  text-align: center;
  font-size: 1.8rem; }

/* Modal */
.modal__backdrop {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 900; }

.modal__content {
  box-shadow: 0 5px 10px #000000;
  position: relative;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  min-width: 40rem; }
  .modal__content .close-button {
    border: none;
    background: #FFFFFF;
    position: absolute;
    top: 1rem;
    right: 2.5rem;
    font-weight: 900;
    font-size: 1.5em; }
    .modal__content .close-button :hover {
      cursor: pointer;
      color: #FF4713; }

.modal__footer {
  display: flex;
  justify-content: flex-end; }
  .modal__footer .button {
    text-transform: uppercase; }

.modal__header {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 2rem; }
  .modal__header h1, .modal__header h2 {
    margin: 0; }

.modal__body {
  display: flex;
  justify-content: flex-start;
  min-height: 10rem;
  font-size: 1.6rem; }

.totp-setup-modal .modal__content {
  width: 75rem; }
  .totp-setup-modal .modal__content ol {
    align-self: flex-start;
    text-align: left;
    width: 100%; }

.totp-setup-modal .modal__body {
  flex-direction: column;
  justify-content: flex-start; }
  .totp-setup-modal .modal__body h3 {
    margin: 0; }

h1 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #383943;
  text-align: center;
  margin: 0; }

h2 {
  font-size: 2.2rem;
  margin: 0; }

/* Two-Factor Authentication */
.twofactor-auth > .form-container {
  width: 70rem;
  align-items: stretch; }

.twofactor-auth .form {
  width: auto; }
  .twofactor-auth .form .form-group {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .twofactor-auth .form .form-group .field-error {
      text-align: center;
      width: 40rem; }
  .twofactor-auth .form .verification-code-input {
    width: 20rem;
    margin-bottom: 1rem; }

.twofactor-auth ol {
  counter-reset: counter;
  list-style: none;
  padding-left: 40px; }
  .twofactor-auth ol li {
    margin: 0 0 0.5rem 0;
    counter-increment: counter;
    position: relative;
    padding-bottom: 1.5rem; }
    .twofactor-auth ol li::before {
      content: counter(counter);
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      position: absolute;
      left: calc(-1 * 32px - 10px);
      line-height: 32px;
      width: 32px;
      height: 32px;
      top: 0;
      background: #FF4713;
      border-radius: 50%;
      text-align: center;
      box-shadow: 1px 1px 0 #999; }
    .twofactor-auth ol li .qrcode, .twofactor-auth ol li kbd {
      display: flex;
      justify-content: center; }
    .twofactor-auth ol li kbd {
      padding-top: 1.5rem;
      font-weight: 600;
      font-size: 2.5rem; }

footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  background-color: #FFFFFF;
  color: #000000;
  text-decoration: none;
  z-index: 10; }
  footer .footer__container {
    display: flex;
    flex-direction: row;
    align-content: center;
    padding: 1.3rem 2rem; }
    @media (max-width: 375px), (max-width: 650px) {
      footer .footer__container {
        padding: 2rem; } }
  footer .footer__links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0; }
    @media (max-width: 375px), (max-width: 650px) {
      footer .footer__links {
        justify-content: center; } }
    footer .footer__links > li {
      padding: 0 1rem; }
      @media (max-width: 375px), (max-width: 650px) {
        footer .footer__links > li {
          padding: 0.5rem; } }
      footer .footer__links > li a {
        color: #000000;
        text-decoration: none; }
        footer .footer__links > li a:hover {
          cursor: pointer;
          color: #FF4713; }

.signout-iframe {
  border: none; }
