html, body {
    height: 100%;
}

body.dark-background {
    background-blend-mode: multiply;
    background-color: #006699;
    background-image: url("/assets/login-background.png");
    background-size: cover;
}

/**
Override some bootstrap styles
 */
.card {
    background-color: #FAFAFA;
}

.text-primary {
    color: #2C6AA1 !important;
}

/* specific */
#mainContainer {
  font-family: Helvetica, sans-serif;
  height: 100vh;
  letter-spacing: normal;
  position: relative;
  width: 100vw;
}

#background {
  background-blend-mode: multiply;
  background-color: #006699;
  background-image: url("/assets/login-background.png");
  background-size: cover;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

#loginCard {
  align-items: center;
  background-color: #FAFAFA;
  border: 1px solid #979797;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 482px;
  width: 588px;
}

#emailInput {
  margin-bottom: 2.75rem;
  margin-top: 4.875rem;
}

.input {
  border: 1px solid;
  border-color: rgba(25,25,25,0.38);
  border-radius: 0;
  box-sizing: border-box;
  font-size: 1rem;
  height: 56px;
  padding: 0 1rem;
  width: 328px;
}

.input:hover {
  border-color: rgba(0,0,0,0.8);
}

.input:focus {
  border-color: #006699;
  border-radius: 0;
  border-width: 2px;
  outline: none;
}

.inputLabel {
  background-color: white;
  font-size: .875rem;
  left: .75rem;
  padding: 0 6px;
  position: absolute;
  top: -.5rem;
}

.inputError {
  border-color: #D80F0F;
  border-width: 2px;
}

.inputLabelError {
  color: #D80F0F;
}

#showPassword {
  background-image: url('/assets/show-pw-gray.png');
  background-size: contain;
  cursor: pointer;
  height: 15px;
  overflow: hidden;
  position: absolute;
  right: .875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}

#showPassword.showPassword {
  background-image: url('/assets/show-pw-blue.png');
}

.errorMessage {
  color: #D80F0F;
  font-size: .875rem;
  margin-top: 2px;
  text-align: left;
}

.button {
  background-color: #006699;
  border: none;
  border-radius: 18px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: .875rem;
  height: 36px;
  margin: 1.75rem 0;
  text-transform: uppercase;
  width: 175px;
}

.button:hover {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
}

.button:active {
  background-color: #1378CE;
}

.focus:focus {
  outline: 1px dashed black;
  outline-offset: 5px;
}

.paragraph {
  color: #575757;
  font-size: .875rem;
  line-height: 17px;
}

/* helpers */
.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.db { display: block; }
.dn { display: none; }

.relative { position: relative; }

.tc { text-align: center; }

.maintenance-main {
  background-image: url(/assets/maintenance-background.png);
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
}

.m0 {
  margin: 0;
}

.mv4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt3 {
  margin-top: 1.5rem;
}

.ff-arial {
  font-family: Arial, Helvetica, sans-serif;
}

.white {
  color: #FFFFFF;
}

.h1 {
  font-size: 42px;
  font-weight: 700;
}

.h2 {
    font-size: 24px;
    font-weight: 500;
}

.p {
  font-size: 24px;
  font-weight: 400;
}
