html {
  display: flex;
  width: 100%;
  height: 100%;
}
.app-wrapper {
  position: initial;
}
body {
  background-image: url('Images/Ncompass Login PNG.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}
@media screen and (orientation: landscape) {
  body {
    background-size: 100vw auto;
  }
}
@media screen and (orientation: portrait) {
  body {
    background-position: left;
    background-size: auto 100vh;
  }
}
.html5-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  background-color: #d9534f;
  color: white;
  font-weight: bold;
}
.html5-warning a {
  color: blue;
}
.title-image-container {
  position: relative;
  left: 20%;
  top: 5%;
  width: 30em;
}
.title-image-container .title-image {
  width: 100%;
}
.footer-image-container {
  z-index: 0;
  position: fixed;
  bottom: 100px;
  right: 100px;
  width: 15em;
}
.footer-image-container .footer-image {
  width: 100%;
}
.mfa-otp-entry-link {
  cursor: pointer;
  color: blue;
  text-decoration: underline;
}
.mfa-instructions-label {
  font-weight: bolder;
  text-align: center;
}
.mfa-qrcode {
  float: left;
  width: 150px;
  height: 150px;
}
.mfa-popup {
  width: 370px;
  height: 200px;
  background-color: white;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: gray;
}
.mfa-popup-open {
  visibility: visible;
}
.mfa-popup-close {
  visibility: hidden;
}
.mfa-container {
  border-radius: 25px;
  border: 2px solid black;
  padding: 20px;
  width: 370px;
  height: 290px;
}
.mobileapp-mfa-choose-os {
  margin-top: 150px;
}
.mobileapp-qr-code-container {
  height: 390px;
}
.mfa-mobileapp-qr-code {
  margin-bottom: 15px;
}
.mfa-mobileapp-qr-code__otp {
  height: 75px;
}
.mfa-mobileapp__your-server {
  font-weight: bold;
}
.mfa-button {
  display: inline-block;
  width: 20%;
  font-size: 12pt;
  border-radius: 10px;
  border: solid 1px #595a5c;
  padding: 6px 8px;
  margin: 5px 1px;
  text-align: center;
  box-sizing: initial;
  vertical-align: middle;
  color: white;
  background-color: #595a5c;
  cursor: pointer;
}
.mfa-button-cancel {
  width: 30%;
}
.mfa-approval-cancel {
  position: fixed;
  left: 63%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.mfa-mobileapp-os-qr-container {
  margin-bottom: 50px;
}
.mfa-mobileapp-os-icons {
  width: 150px;
  height: 100px;
  cursor: pointer;
  padding: 5px 5px 5px 5px;
  border-radius: 10px;
  border: solid 1px #595a5c;
}
.mfa-mobileapp-ios {
  float: left;
}
.mfa-mobileapp-android {
  float: right;
}
.login,
input[type=text],
input[type=password] {
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}
.login {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  left: 50%;
  top: 40%;
  width: 90%;
  max-width: 550px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: white;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 50px;
  padding-left: 30px;
}
.login-copyright {
  position: absolute;
  right: 30%;
  bottom: -40px;
  color: white;
}
.error-container {
  display: flex;
}
.error-container .spacer {
  flex: 1;
}
.error-container .form-error {
  flex: 1;
}
.error-container .form-error ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.error-container .alert-error {
  margin: 0;
  text-align: center;
}
.login-container {
  display: flex;
}
.login-header {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  text-align: center;
  font-weight: bold;
  /* Fix IE11 */
  min-height: 10em;
}
.login-header .login-icon {
  width: 130px;
}
.login-header h1 {
  font-family: "Open Sans Condensed", "Myriad Pro", Arial, Helvetica, sans-serif;
  font-size: 36pt;
  width: 130px;
}
.login-header.large {
  padding: 0 20px;
}
.login-header.large .login-icon {
  width: auto;
  height: auto;
}
.login-form {
  flex: 1;
  /* Fix IE11 */
  min-height: 14em;
  /* Fix IE11 */

}
.login-form input,
.login-form [type="submit"] {
  display: inline-block;
  width: 100%;
  font-size: 12pt;
  border-radius: 10px;
  border: solid 1px #595a5c;
  padding: 6px 8px;
  margin-bottom: 8px;
}
.login-form input::-webkit-input-placeholder {
  text-align: center;
}
.login-form input::-moz-placeholder {
  text-align: center;
}
.login-form input::-ms-input-placeholder {
  text-align: center;
}
.login-form [type="submit"] {
  box-sizing: initial;
  text-align: center;
  vertical-align: middle;
  color: white;
  background-color: #595a5c;
  cursor: pointer;
}
.login-form #remember_device {
  width: 10%;
}
.disclosure,
.password-warning {
  font-size: 8pt;
  color: #595a5c;
  font-weight: bold;
}
