:root {
  --companyDarkBlue: #1C355E;
  --companyLightBlue: #2ED9C3;
  --offWhite: #FAFAFA;
  --highlightedOffWhite: #EAEAEA;
  --textInputHighlight: #ACDFEA;
}

html { height: 100%; }

.container {
  position: relative;
}

.login-wrapper {
  margin: auto;
  transform: translate(0px, 15px);
  padding-top: 5px;
  width: 280px;
  text-align: center;
}

.login-wrapper h2 {
  font-family: avenir;
  color: var(--companyDarkBlue);
  font-size: 24px;
}

.loginForm input {
  font-family: 'Roboto', sans-serif;
}

#id_username {
  width: 246px;
  height: 35px;
  padding: 0.25em 1em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline-width: 0;
  font-size: 16px;
}

#id_password {
  width: 222px;
  height: 35px;
  padding: 0.25em 40px 0.25em 1em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline-width: 0;
  font-size: 16px;
}

.loginForm input:focus {
  box-shadow: 0 0 5px var(--textInputHighlight);
}
.loginForm input:focus-visible {
  outline: none;
}

#togglePassword {
  position: absolute;
  color: #818589;
  padding: 4px 0px;
  width: 26px;
  top: 50%;
  -ms-transform: translate(-35px, -50%);
  transform: translate(-35px, -50%);
  cursor: pointer;
}

#togglePassword:hover {
  background-color: var(--highlightedOffWhite);
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

.loginForm button{
  background-color: var(--companyDarkBlue);
  color: white;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  width: 280px;
  cursor: pointer;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
}

.loginForm button:hover {
  background-color: var(--companyLightBlue);
}

.fieldBoxLabel {
  line-height: 2;
  display: block;
  vertical-align: middle;
  text-align: left;
  font-size: 15px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

#errorText {
  text-align: left;
  color: red;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  display: none;
}