#loginContainer,
#container {
    background-color: #24221f;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backdrop {
    background-color: #24221f;
}

.ir-logo-container {
    margin-left: auto;
    margin-right: auto;
    width: 280px;
}

.ir-toc-link {
    text-decoration: none;
}

.form-title {
    color: #ffffff;
    font-size: 28px;
}

.form-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 280px;
}

a {
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

img {
    margin-bottom: 40px;
}

.form-group label,
#footer label {
    color: #ffffff;
}

form>button,
#forgot-password>button,
#forgot-password>#link-back {
    margin-top: 40px;
    width: 100%;
}

#footer {
    margin-top: 40px;
    text-align: center;
}

.alert-login {
    margin-top: 20px;
}

h1,
h2,
h4 {
    color: #fff;
    max-width: 280px;
}

.form-desc {
    margin-bottom: 40px;
}

.label-desc {
    text-align: center;
}






/** START: Loading Animation **/

@keyframes colouredDotKeyframe {
    0% {
        opacity: 0.7;
        filter: opacity(0.7);
        box-shadow: 0px 0px 0px 0px #fff;
    }
    25% {
        opacity: 1;
        filter: opacity(1);
        box-shadow: 0px 0px 0px 8px #fff;
    }
    50% {
        opacity: 0.7;
        filter: opacity(0.7);
        box-shadow: 0px 0px 0px 0px #fff;
    }
    100% {
        opacity: 0.6;
        filter: opacity(0.6);
        box-shadow: 0px 0px 0px 0px #fff;
    }
}

.slim-loading-container {
  margin: 15px 0 0 0;
  display: block;
  height: 45px;
  width: 100%;
}

.slim-loading-container .dots {
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 7px);
}

.slim-loading-container .dots span:before {
    content: "";
    position: absolute;
    top: 0;
    left: -34px;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background-color: #fff;
    background-clip: padding-box;
    animation: colouredDotKeyframe 1s linear 0s infinite;
}

.slim-loading-container .dots span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background-color: #fff;
    background-clip: padding-box;
    animation: colouredDotKeyframe 1s linear 0.15s infinite;
}

.slim-loading-container .dots span:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 34px;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background-color: #fff;
    background-clip: padding-box;
    animation: colouredDotKeyframe 1s linear 0.3s infinite;
}
/** END: Loading Animation **/

/** START: set-password page **/
form.set-password-form {
  max-width: 325px;
  min-width: 325px;
  margin: 0 auto;
}

form.set-password-form button.btn {
  margin: 15px 0 0 0;
  white-space: normal;
}

form.set-password-form .alert {
  margin: 15px 0 0 0;
  text-align: center;
}

.password-popover-container {
  position: relative;
  display: inline-block;
  margin-bottom: -14px;
}

.password-popover-container.password-help {
  width: 100%;
}

.password-popover-container .popover-message {
  text-align: left;
}

.password-popover-container .popover-message p {
  color: #fff;
  margin: 0 0 0 10px;
}

.password-popover-container .popover-sub-message p {
  margin: 0;
}

.password-popover-container .popover-message .popover-sub-message {
  padding-left: 15px;
}

.password-popover-container .popover-content .valid {
  color: #61ceb1;
}

.password-popover-container .popover-content .invalid {
  color: #dd4747;
}

.password-popover-container .popover-content #pwd-helper-max-char.valid {
  display: none;
  /* Special Case: low value messaging */
}

.password-popover-container .popover-content {
  opacity: 0;
  visibility: hidden;
  z-index: -10;
  position: absolute;
  margin: 0;
  padding: 10px;
  bottom: 100%;
  width: 100%;
  background-color: #2c2c2c;
  box-shadow: 0 -7px 15px 0 rgba(44, 44, 44, 0.3);
  transform: translate(0, -30px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.password-popover-container .popover-content.show {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
}

.password-popover-container .popover-content.show:before {
  position: absolute;
  content: '';
  z-index: 10;
  right: calc(50% - 10px);
  bottom: -20px;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #FFFCC7 transparent transparent transparent;
  transition-duration: 0.2s;
  transition-property: transform;
}
/** END: set-password page **/

/*# sourceMappingURL=styles.4b03c4df45dcda379a40.css.map*/