.authentication-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}
.authentication-wrapper .authentication-inner {
  width: 100%;
}
.authentication-wrapper.authentication-basic {
  align-items: center;
  justify-content: center;
}
.authentication-wrapper .auth-cover-illustration {
  z-index: 1;
  max-inline-size: 38rem;
}
.authentication-wrapper .authentication-image {
  z-index: -1;
  inline-size: 100%;
  inset-block-end: 7%;
  position: absolute;
  inset-inline-start: 0;
}
.authentication-wrapper.authentication-cover {
  align-items: flex-start;
}
.authentication-wrapper.authentication-cover .authentication-inner {
  min-height: 100vh;
  position: relative;
}
.authentication-wrapper.authentication-cover .authentication-image {
  inline-size: 70%;
}
html:not([dir=rtl]) .authentication-wrapper.authentication-cover .authentication-image {
  inset-inline-start: unset;
}
.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 450px;
}
.authentication-wrapper .auth-input-wrapper .auth-input {
  max-width: 50px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  font-size: 150%;
}
.authentication-wrapper .divider .divider-text {
  font-size: 0.9375rem;
}

@media (max-width: 575.98px) {
  .authentication-wrapper .auth-input-wrapper .auth-input {
    font-size: 1.125rem;
  }
}
@media (max-width: 1199.98px) {
  .authentication-cover .authentication-image {
    inset-block-end: 9%;
  }
  [dir=rtl] .authentication-cover .authentication-image {
    inline-size: 65%;
  }
}
#twoStepsForm .fv-plugins-bootstrap5-row-invalid .form-control {
  border-color: #ff4d49;
}

@media (max-width: 575.98px) {
  .numeral-mask-wrapper .numeral-mask {
    padding: 0 !important;
  }
  .numeral-mask {
    margin-inline: 1px !important;
  }
}
.light-style .authentication-wrapper .authentication-bg {
  background-color: #fff;
}
.light-style .authentication-wrapper .divider .divider-text {
  color: #3b4056;
}

.dark-style .authentication-wrapper .authentication-bg {
  background-color: #30334e;
}
.dark-style .authentication-wrapper .divider .divider-text {
  color: #d7d8ed;
}

.bgIllustrationSquare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bgIllustrationSquare svg {
  background-position: top;
  background-size: cover;
  background-repeat: repeat-y;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




.bg-wrap-hero {
  z-index: 0;
  width: 100vw;
  max-width: 1200px;
  position: absolute;
  inset: 0 0 0 50%;
  transform: translate(-50%);
}

.hero-lines-wrapper {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.hero-line-item {
  width: 2px;
  height: 100%;
  position: relative;
  overflow:hidden;
}

.hero-line-item:nth-child(1), .hero-line-item:nth-child(8) {
  mask: linear-gradient(to bottom, #FFF 0%, #FFF 30%, transparent 100%);
}

.hero-line-gradient {
  z-index: 1;
  background-image: linear-gradient(180deg, transparent, var(--bs-primary));
  width: 1px;
  height: 100px;
  position: absolute;
  top: -100px;
  left: 0;
}

.hero-line-gradient {
  animation: hero-gradient-anim 8s linear 0s infinite;
}

.hero-line-item::after {
  content: "";
  position: absolute;
  background: #1111111a;
  box-shadow: 1px 0px 0px 0px #FFF;
  width: 1px;
  left: 0px;
  top: 0px;
  bottom: 0px;
}

.hero-line-item:nth-child(1), .hero-line-item:nth-child(8) {
  mask: linear-gradient(to bottom, #FFF 0%, #FFF 30%, transparent 100%);
}

.hero-line-item:nth-child(2), .hero-line-item:nth-child(7) {
  mask: linear-gradient(to bottom, #FFF 0%, #FFF 45%, transparent 100%);
}

.hero-line-item:nth-child(3), .hero-line-item:nth-child(6) {
  mask: linear-gradient(to bottom, #FFF 0%, #FFF 60%, transparent 100%);
}

.hero-line-item:nth-child(4), .hero-line-item:nth-child(5) {
  mask: linear-gradient(to bottom, #FFF 0%, #FFF 75%, transparent 100%);
}

.hero-line-item:nth-child(1) .hero-line-gradient, .hero-line-item:nth-child(8) .hero-line-gradient {
  animation-delay: 6s;
}

.hero-line-item:nth-child(2) .hero-line-gradient, .hero-line-item:nth-child(7) .hero-line-gradient {
  animation-delay: 4s;
}

.hero-line-item:nth-child(3) .hero-line-gradient, .hero-line-item:nth-child(6) .hero-line-gradient {
  animation-delay: 2s;
}

.hero-line-item:nth-child(4) .hero-line-gradient, .hero-line-item:nth-child(5) .hero-line-gradient {
  animation-delay: 0s;
}

@keyframes hero-gradient-anim {
  0% {
      top: -100px;
  }

  100% {
      top: 100%;
  }
}
