.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: 25rem;
  position: relative;
}
.authentication-wrapper.authentication-basic .authentication-inner:before {
  width: 21rem;
  height: 21rem;
  content: " ";
  position: fixed;
  top: -100px;
  background: url("../../../img/pages/auth-top-left.png");
  background-size: contain;
}
html:not([dir=rtl]) .authentication-wrapper.authentication-basic .authentication-inner:before {
  left: -100px;
}
[dir=rtl] .authentication-wrapper.authentication-basic .authentication-inner:before {
  right: -100px;
  transform: rotate(90deg);
}
.authentication-wrapper.authentication-basic .authentication-inner:after {
  width: 7rem;
  height: 14.125rem;
  content: " ";
  position: fixed;
  bottom: 0;
  background-image: url("../../../img/pages/auth-right-bottom.png");
  background-size: contain;
}
html:not([dir=rtl]) .authentication-wrapper.authentication-basic .authentication-inner:after {
  right: 0;
}
[dir=rtl] .authentication-wrapper.authentication-basic .authentication-inner:after {
  left: 0;
  transform: rotate(180deg);
}
.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%;
}

.authentication-cover-img {
  margin-bottom: 1rem;
}

.authentication-wrapper .authentication-bg {
  background-color: var(--bs-body-bg, #1a1a2e) !important;
}
.authentication-wrapper .authentication-bg .app-brand-text,
.authentication-wrapper .authentication-bg h4,
.authentication-wrapper .authentication-bg .fw-500,
.authentication-wrapper .authentication-bg label {
  color: var(--bs-body-color) !important;
}
.authentication-wrapper .authentication-bg p,
.authentication-wrapper .authentication-bg .text-muted {
  color: var(--bs-secondary-color) !important;
}
.authentication-wrapper .authentication-bg a:not(.btn) {
  color: var(--bs-warning) !important;
}
.authentication-wrapper .authentication-bg a:not(.btn):hover {
  color: var(--bs-warning) !important;
  opacity: 0.9;
}
.authentication-wrapper .authentication-bg .form-control {
  background-color: var(--bs-body-bg);
  border-color: var(--bs-border-color);
  color: var(--bs-body-color);
}
.authentication-wrapper .authentication-bg .form-control::placeholder {
  color: var(--bs-secondary-color);
}
.authentication-wrapper .authentication-bg .input-group-text {
  background-color: var(--bs-tertiary-bg);
  border-color: var(--bs-border-color);
  color: var(--bs-body-color);
}
.authentication-wrapper .authentication-bg .btn-primary {
  background-color: var(--bs-warning);
  border-color: var(--bs-warning);
  color: #1a1a2e;
}
.authentication-wrapper .authentication-bg .btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #1a1a2e;
}
.authentication-wrapper .authentication-bg .alert {
  background-color: var(--bs-tertiary-bg);
  border-color: var(--bs-border-color);
  color: var(--bs-body-color);
}

.authentication-cover-img-wrapper {
 background-color: #0E0E0E;
 background-image: url('../../../img/backgrounds/authentication-bg.png');
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}

.form-control, .input-group-text {
  border-color: var(--bs-white) !important;
  background-color: #020202 !important;
}
.form-control::placeholder, .input-group-text::placeholder {
  color: var(--bs-secondary) !important;
}
.form-control:focus, .input-group-text:focus,
.form-control:active, .input-group-text:active,
.form-control:hover, .input-group-text:hover,
.form-control:focus-visible, .input-group-text:focus-visible,
.form-control:focus-within, .input-group-text:focus-within {
  border-color: var(--bs-white) !important;
  box-shadow: none !important;
  background-color: #020202 !important;
}

@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: #ff5b5c;
}
@media (min-height: 737px) {
  .authentication-cover-img {
    margin-bottom: 3rem;
  }
}

