.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.authentication-basic .card-body {
    padding: 2rem;
}
.authentication-wrapper.authentication-cover {
    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;
}
.authentication-wrapper.authentication-basic .authentication-inner:before {
    width: 238px;
    height: 233px;
    content: " ";
    position: absolute;
    top: -55px;
    left: -40px;
    background-image: url("data:image/svg+xml,%3Csvg width='239' height='234' viewBox='0 0 239 234' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='88.5605' y='0.700195' width='149' height='149' rx='19.5' stroke='%237367F0' stroke-opacity='0.16'/%3E%3Crect x='0.621094' y='33.761' width='200' height='200' rx='10' fill='%237367F0' fill-opacity='0.08'/%3E%3C/svg%3E%0A");
}
@media (max-width: 575.98px) {
    .authentication-wrapper.authentication-basic .authentication-inner:before {
        display: none;
    }
}
.authentication-wrapper.authentication-basic .authentication-inner:after {
    width: 180px;
    height: 180px;
    content: " ";
    position: absolute;
    z-index: -1;
    bottom: -30px;
    right: -56px;
    background-image: url("data:image/svg+xml,%3Csvg width='181' height='181' viewBox='0 0 181 181' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.30469' y='1.44312' width='178' height='178' rx='19' stroke='%237367F0' stroke-opacity='0.16' stroke-width='2' stroke-dasharray='8 8'/%3E%3Crect x='22.8047' y='22.9431' width='135' height='135' rx='10' fill='%237367F0' fill-opacity='0.08'/%3E%3C/svg%3E");
}
@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-image: url("/partner-assets/assets/img/backgrounds/signup_screen_mobile.jpg");
    background-repeat: no-repeat;
    position: relative;
    background-position-y: -310px;
}
.dark-style .authentication-wrapper.authentication-bg .img-bg-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #09080d;
    background: linear-gradient(
        180deg,
        rgba(9, 8, 13, 0) 0%,
        rgba(4, 11, 29, 1) 62%
    );
}

@media (min-width: 640px) {
    .dark-style .authentication-wrapper.authentication-bg {
        background-color: #030b1d;
        background-image: url("/partner-assets/assets/img/backgrounds/signup_screen.webp");
        background-repeat: no-repeat;
        background-position: -200px;
    }

    .dark-style .authentication-wrapper.authentication-bg .img-bg-gradient {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #09080d;
        background: linear-gradient(
            180deg,
            rgba(9, 8, 13, 0) 60%,
            rgba(4, 11, 29, 1) 100%
        );
    }
}

.amh-custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
}

.amh-custom-checkbox input[type="checkbox"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.checkbox-design {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: none;
}

.amh-custom-checkbox input[type="checkbox"]:checked + .checkbox-design {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fdd765;
}

.amh-custom-checkbox input[type="checkbox"]:checked + .checkbox-design::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #fdd765;
    border-radius: 50%;
}

.checkbox-label {
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}
