
body {
    background-color: #f9f8f6;
    color: #3d3d3d;
    font-family: "Arial","Helvetica Neue","Helvetica","sans-serif";
    height: 100%;
}

html {
    height: 100%;
}

.container-table {
    display: table;
    height: 100%;
    margin: -50px auto;
    width: 400px;
}

.vertical-center-row {
    display: table-cell;
    vertical-align: middle;
}

a {
    text-decoration: underline;
}

[ng-cloak] {
    display: none;
}

.page-error .request-id {
    margin-left: 20px;
    font-size: 80%;
    font-weight: bold;
}

.logo {
    background-image: url(../Images/logo.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 251px;
    height: 150px;
}

.content-container .loginForm .submitBtn {
    background-color: #001C37;
    border: medium none;
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    height: 44px;
    letter-spacing: normal;
    line-height: 1.5em;
    width: 150px;
}

.content-container .loginForm .submitBtn:hover {
    background-color: #001C37;
}

.content-container .loginForm .submitBtn[disabled] {
    background-color: #001C37;
    opacity: 0.5;
}

label {
    font-weight: normal;
    font-size: 15px;
    display: inline-block;
    max-width: 100%;
}

input.hasError {
    border-color: #C7253F;
}

.form-control {
    border-radius: 0;
}

.loginForm {
    text-align: left;
}


form .validationErrorMessage:not(.right) {
    margin-left: 15px;
}

form .validationErrorMessage {
    background-color: #C7253F;
    color: #ffffff;
    display: inline-block;
    font-family: "Helvetica Neue","Helvetica","Arial","sans-serif";
    font-size: 14px;
    height: 30px;
    letter-spacing: normal;
    line-height: 1.5em;
    padding: 5px 10px;
    white-space: nowrap;
}

form .incorrectCodeMessage {
    background-color: #C7253F;
    color: #ffffff;
    display: inline-block;
    font-family: "Helvetica Neue","Helvetica","Arial","sans-serif";
    font-size: 14px;
    height: 30px;
    letter-spacing: normal;
    line-height: 1.5em;
    padding: 5px 10px;
    white-space: nowrap;
    margin-left: 0;
    margin-bottom: 5px;
}

.loginForm .validationError {
    left: 400px;
    position: absolute;
    top: 3px;
}

form .validationErrorArrow {
    color: #C7253F;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin-left: 15px;
    position: absolute;
    white-space: nowrap;
}

form .validationErrorArrow::after {
    background-color: transparent;
    border-bottom: 15px solid transparent;
    border-right-style: solid;
    border-right-width: 15px;
    border-top: 15px solid transparent;
    content: "";
    height: 30px;
    left: -15px;
    line-height: 0;
    padding: 0;
    position: absolute;
    width: 15px;
}

.loginForm .inputControl {
    position: relative;
}

.content-container .loginForm .toggleShowPassword {
    background-image: url(../Images/show-password-default.svg);
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    right: 5px;
    position: absolute;
    top: 1px;
}

.content-container .loginForm .toggleShowPassword:hover {
        background-image: url(../Images/show-password-hover.svg);
    }

.content-container .loginForm .toggleShowPassword:active {
    background-image: url(../Images/show-password-down.svg);
}

form .errorMessage-nps-animate, .unknownError {
    background-color: #C7253F;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: normal;
    line-height: 1.5em;
    padding: 5px 10px;
}
form .errorMessage-nps-animate {
    float:right;
    padding: 2px 8px;
}
form .errorMessage-nps-animate ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

form .errorMessage-nps-animate.validation-summary-valid {
    display: none;
}

.unknownError {
    margin-top: 20px;
}

.hide {
    display: none;
    height: 0;
    width: 0;
}

.mfaMethod {
    background-repeat: no-repeat;
    min-height: 60px;
    margin: 20px;
    padding-left: 70px;
}

.sms {
    background-image: url(../Images/sms.svg);
    background-size: 50px;
}

.digipass {
    background-image: url(../Images/digipass.svg);
    background-size: 45px;
}

.app {
    background-image: url(../Images/app.svg);
    background-size: auto 60px;
}

.email {
    background-image: url(../Images/email.svg);
    background-size: 50px;
}

#cannot-access-menu {
    padding: 3px 6px;
    border-radius: 1px;
}

.dropdown-menu a{
    text-decoration: none;
}

.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

@media (max-width: 500px) {
  .container-table {
    width: 250px;
  }
  .loginForm .validationError {
      left: 250px;
      position: relative;
      left: 0;
      top: 0;
  }

  form .validationErrorArrow {
      display: none;
  }
  form .validationErrorMessage:not(.right) {
      margin: 0;
  }
}

@media (max-height: 700px) {
  .container-table {
    margin: 0 auto;
  }
}