@charset "UTF-8";
.authentication-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}
.authentication-wrapper .authentication-inner {
  width: 100%;
  position: relative;
}
.authentication-wrapper .authentication-inner.row::before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('../../images/login_bg.jpg');
    background-size: cover;
    background-position: bottom;
    z-index: -1;
    opacity: .8;
}

.authentication-wrapper.authentication-cover {
  align-items: flex-start;
}
.authentication-wrapper.authentication-cover .authentication-inner {
  height: 100vh;
}
.authentication-wrapper .auth-input-wrapper .auth-input {
  max-width: 50px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  font-size: 150%;
}

@media (max-width: 575.98px) {
  .authentication-wrapper .auth-input-wrapper .auth-input {
    font-size: 1.125rem;
  }
}
#twoStepsForm .fv-plugins-bootstrap5-row-invalid .form-control {
  border-color: #ff3e1d;
}

.authentication-wrapper .authentication-bg {
  background-color: #ffffff7a;
  padding-top: 0 !important;
}
.authentication-wrapper .authentication-bg a.app-brand-link {
    background: #67386c;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 40px;
    opacity: .75;
}