body {
    background: linear-gradient(#bfe7ff 0%, #ffffff 70%);
    overflow: hidden;
}
.authentication-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}
.authentication-wrapper .authentication-inner {
  width: 100%;
}
.authentication-wrapper.authentication-basic {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.authentication-wrapper.authentication-basic .card-body {
  padding: 2rem;
}
.authentication-wrapper.authentication-cover {
  -ms-flex-align: start;
      align-items: flex-start;
}
.authentication-wrapper.authentication-cover .authentication-inner {
  height: 100%;
  margin: auto 0;
}
.authentication-wrapper.authentication-cover .authentication-inner .auth-cover-bg {
  width: 100%;
  margin: 2rem 0 2rem 2rem;
  height: calc(100vh - 4rem);
  border-radius: 1.125rem;
  position: relative;
}
.authentication-wrapper.authentication-cover .authentication-inner .auth-cover-bg .auth-illustration {
  max-height: 65%;
  z-index: 1;
}
.authentication-wrapper.authentication-cover .authentication-inner .platform-bg {
  position: absolute;
  width: 100%;
  bottom: 0%;
  left: 0%;
  height: 35%;
}
.authentication-wrapper.authentication-cover .authentication-inner .auth-multisteps-bg-height {
  height: 100vh;
}
.authentication-wrapper.authentication-cover .authentication-inner .auth-multisteps-bg-height > img:first-child {
  z-index: 1;
}
.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 400px;
  position: relative;
}
@media (max-width: 575.98px) {
  .authentication-wrapper.authentication-basic .authentication-inner:before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .authentication-wrapper.authentication-basic .authentication-inner:after {
    display: none;
  }
}
.authentication-wrapper .auth-input-wrapper .auth-input {
  max-width: 50px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  font-size: 150%;
}

@media (max-height: 636px) {
  .auth-multisteps-bg-height {
    height: 100% !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: #ea5455;
}

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

.dark-style .authentication-wrapper.authentication-bg {
  background-color: #2f3349;
}
.dark-style .auth-cover-bg-color {
  background-color: #25293c;
}

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: visible;
    z-index: 0;
}

.cloud {
    position: absolute;
    top: 30px;
    width: 300px;
    height: auto;
    opacity: 0.8;
    animation: floatClouds 30s ease-in-out infinite alternate;
}

.cloud:nth-child(1) {
    left: 10%;
    top: 40px;
    width: 150px;
    animation-duration: 40s;
}

.cloud:nth-child(2) {
    left: 50%;
    top: 60px;
    width: 100px;
    animation-duration: 50s;
    animation-delay: 5s;
}

.cloud:nth-child(3) {
    left: 80%;
    top: 30px;
    width: 180px;
    animation-duration: 35s;
    animation-delay: 2s;
}

@keyframes floatClouds {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(-30px);
    }
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: #4b4b4b;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 10px 0 rgba(0,0,0,0.2);
}

.road::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(to right, #fff 0 60px, transparent 60px 120px);
    transform: translateY(-50%);
}

.car-right,
.car-left {
    position: absolute;
    width: 100px;
    opacity: 0;
    animation-fill-mode: forwards;
}

.car-right {
    position: absolute;
    bottom: 20px;
    width: 100px;
    animation: driveRight 16s linear infinite;
}

@keyframes driveRight {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    100% {
        transform: translateX(120vw);
        opacity: 1;
    }
}

.car-left {
    position: absolute;
    bottom: 80px;
    width: 100px;
    animation: driveLeft 18s linear infinite;
}

.car-left img {
    transform: scaleX(-1);
}

@keyframes driveLeft {
    0% {
        transform: translateX(120vw);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    100% {
        transform: translateX(-200px);
        opacity: 1;
    }
}

.car img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 3px 3px rgba(0,0,0,0.4));
}

.car-right:nth-child(1) { animation-delay: 0s; }
.car-right:nth-child(2) { animation-delay: 6s; }
.car-left:nth-child(3) { animation-delay: 3s; }
.car-left:nth-child(4) { animation-delay: 10s; }

.authentication-wrapper {
    position: relative;
    z-index: 3;
}

.card {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 1rem;
}

.card-header {
    background: #041E51;
    height: 140px;
    position: relative;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    overflow: hidden;
}

.card-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 20px;
    background: white;
    border-top-left-radius: 100% 40px;
    border-top-right-radius: 100% 40px;
}

.app-brand-text {
    color: #F6BB0A !important;
}
