* {
  box-sizing: border-box;
  font-family: aptos, calibri, sans-serif;
  font-size: 18px;
  color: #333;
}

body {
  margin: 0;
/*  background-image: linear-gradient(to right top, #051937, #13355a, #205480, #2a75a6, #3399cc); */
  background-image: linear-gradient(to right top, #001C30, #0070C0);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  background-color: #FFF;
  width: 600px;
  margin: 25px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

#password_container, #verify_container, #set_container, #mfa_container, #remember_container, .response, #s2_container, #s3_container, #s4_container {
  display: none;
}

#logo {
  float: right;
}

#logo img {
  height: 50px;
  width: 200px;
  border: 0;
}

#title {
  padding-top: 0px;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 45px;
}

.text {
  margin-bottom: 25px;
}

sup {
  font-size: 12px;
}

input[type=text], input[type=password] {
  width: 100%;
  border: 2px solid #A6A6A6;
  border-radius: 5px;
  outline: none;
  padding: 10px;
  transition-property: box-shadow;
  transition-duration: 0.5s;
  margin-bottom: 25px;
}

input[type=text]:focus, input[type=password]:focus {
  border-color: #39C;
  box-shadow: 0 0 8px 0 #39C;
}

input[type=password]::-ms-reveal, input[type=password]::-ms-clear {
  display: none;
}

.code {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
}

#verify_input, #mfa_input, #s3_input {
  width: 150px;
}

button {
  width: 150px;
  border: 1px solid #AAA;
  border-radius: 5px;
  margin-right: 25px;
  padding: 5px;
  outline: 0;
  transition-property: box-shadow;
  transition-duration: 0.5s;
  font-weight: bold;
  color: #FFF;
  cursor: pointer;
  display: inline;
  margin-bottom: 25px;
  -webkit-appearance: none;
}

button:hover {
  opacity: 0.8;
  box-shadow: 0 0 8px 0 #AAA;
}

.submit {
  background: #4B4;
}

.cancel {
  background: #C00;
}

.footer {
  float: right;
  color: #7F7F7F;
}

.footer a {
  text-decoration: none;
  color: #7F7F7F;
}

.footer a:hover {
  color: #39C;
  cursor: pointer;
}

#mfa_help a {
  text-decoration: none;
  color: #FF7F00;
  cursor: pointer;
}

#mfa_help a:hover {
  color: #39C;
  cursor: pointer;
}

.back {
  background-image: url("back.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 0px 3px;
  padding-left: 22px;
}

.exclamation {
  color: #FF7F00;
  font-weight: bold;
  background-image: url("alert.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 0px 3px;
  padding-left: 25px;
}

.check {
  background-image: url("check.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 0px 3px;
  padding-left: 25px;
}

.cross {
  color: #C00;
  font-weight: bold;
  background-image: url("cross.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 0px 3px;
  padding-left: 25px;
}

meter::-webkit-meter-bar {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1) inset;
  border-radius: 2px;
}
meter::-webkit-meter-optimum-value {
  background: linear-gradient(to bottom, #6C6, #5A5);
  border-radius: 2px;
}
meter::-webkit-meter-suboptimum-value {
  background: linear-gradient(to bottom, #FB5, #F90);
  border-radius: 2px;
}
meter::-webkit-meter-even-less-good-value {
  background: linear-gradient(to bottom, #E55, #B32);
  border-radius: 2px;
}

#mfacode {
  font-size: 15px;
}

@media (max-width: 680px) {

body {
  min-height: auto;
}

#logo, .footer {
  float: none;
}

#logo, #title {
  padding-top: 0;
  margin-bottom: 25px;
}

}