@charset "UTF-8";
.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;
  overflow: hidden;
}

.authentication-wrapper.authentication-cover {
  align-items: flex-start;
}
.authentication-wrapper.authentication-cover .authentication-inner {
  height: 100vh;
}
.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 400px;
  position: relative;
}

.authentication-wrapper.authentication-basic .authentication-inner .card {
  z-index: 1;
}
.authentication-wrapper.authentication-basic .authentication-inner .card .app-brand {
  margin-bottom: 2.5rem;
}
.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;
  }
  .authentication-wrapper.authentication-basic .authentication-inner .card {
    box-shadow: none;
  }
  .font-lg-normal {
    font-size: 14px;
  }
}

.light-style .authentication-wrapper .authentication-bg {
  background-color: #fff;
}

.authentication-wrapper .authentication-inner {
  flex: 1;
}
@media (min-width: 768px) {
  .authentication-inner .card {
    box-shadow: 0 0.25rem 1rem rgba(161, 172, 184, 0.45);
  }
}

@media (min-width: 1200px) {
  .authentication-wrapper.authentication-basic .authentication-inner {
    max-width: 600px;
  }
}