    /* ======= Register and login ============= */

.login-container {
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 80%;
    max-width: 100%;
    max-height: 100%;
    /* min-height: 800px; */
    min-height: 640px;
    margin-bottom: 50px;
    margin-top: 50px;
}
@media (min-width: 1600px) {
    .login-container {
        min-height: 720px;
    }
}

.form_container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.sign-in-container .form_field,
.sign-up-container .form_field {
    margin: 0 50px 50px 50px;
}

.login-container.right-panel-active .sign-in-container {
    /* transform: translateX(100%); */
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login-container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.login-container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay-login {
    background-color: #12373F;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay-login {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

/* .overlay-panel .form-img-wrapper{
  margin-top: 60px;
  } */
.overlay-left {
    transform: translateX(-20%);
}

.login-container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.overlay-right h2,
.overlay-left h2 {
    font-size: 30px;
}
.fs-20 {
  font-size: 20px;
}

.overlay-right,
.overlay-left {
    /* background-image: url(../media/images/ai-bg.png) !important; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.overlay-left {
    position: relative;
}

.ai-curve {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.ai-curve img {
    width: 100%;
}

.login-container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.toggle-form {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    outline: none;
    border: none;
}

.auth_main .form_field label {
    color: var(--primary-text-color);
    font-family: Poppins, sans-serif;
    font-size: 18px;
    letter-spacing: 0.4px;
}

.auth_main .form_field .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #333;
    color: var(--primary-text-color);
    background-color: transparent;
}

.auth_main .form-control:focus,
.auth_main .input-group .flag-dropdown:focus,
.auth_main .input-group .contact-input:focus {
    box-shadow: none !important;
    border-color: var(--primary-bg-color);
    /* border-bottom: 2px solid var(--primary-bg-color); */
}

.auth_main .input-group .flag-dropdown,
.auth_main .input-group .contact-input {
    border-radius: 0;
    border: none;
    background: none;
    border-bottom: 1px solid #333;
}

.signupButton {
    padding: 12px;
    width: 40%;
    font-size: 18px;
    border-radius: 10px;
    background-color: var(--primary-text-color);
}

.main-content-wrapper {
    height: 100px;
}

.auth_main .auth_header h2,
.auth_main .auth_header p,
.auth_main .auth_header a,
.forgot_password a {
    color: var(--primary-text-color);
}

.auth_main .auth_header h3 {
    color: var(--primary-text-color);
}

.auth_header .signUp,
.auth_header .signIn,
.already_signin .signUp,
.already_signin .signIn {
    cursor: pointer;
}

@media (max-width: 1400px) {
    .auth_main .login-container .form_field label {
        font-size: 13.498px;
    }
}

@media(max-width:1024px) {

    .sign-in-container .form_field,
    .sign-up-container .form_field {
        margin: 20px;
    }

    .login-container {
        width: 90%;
    }
}

@media(max-width:992px) {
    .login-container {
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .main-content-wrapper {
        height: 87px;
    }
}

@media(max-width:576px) {

    /* .sign-up-container, .sign-in-container{
        width: 100%;
    }
    .overlay-container{
        display: none;
    } */
    .login-container {
        flex-direction: column;
        position: static;
        width: 100%;
        min-height: auto;
    }

    .form_container {
        position: static;
        width: 100%;
        opacity: 1 !important;
        transform: none !important;
    }

    .overlay-container {
        position: static;
        width: 100%;
        height: auto;
        transform: none !important;
        margin-top: 20px;
    }

    .overlay-login {
        flex-direction: column;
        position: static;
        width: 100%;
        height: auto;
        left: 0;
        transform: none !important;
    }

    .overlay-panel {
        position: static;
        width: 100%;
        height: auto;
        transform: none !important;
        padding: 20px;
    }

    .login-container.right-panel-active .overlay-container,
    .login-container.right-panel-active .overlay-login,
    .login-container.right-panel-active .overlay-left,
    .login-container.right-panel-active .overlay-right {
        transform: none !important;
    }

    .sign-up-container,
    .sign-in-container {
        z-index: auto !important;
    }


    .sign-up-container,
    .overlay-left {
        display: none;
    }

    .sign-in-container,
    .overlay-right {
        display: block;
    }

    .sign-up-active .sign-in-container,
    .sign-up-active .overlay-right {
        display: none;
    }

    .sign-up-active .sign-up-container,
    .sign-up-active .overlay-left {
        display: block;
    }
}



.auth_main.steps_section .auth_wrapper_multisteps {
    background-color: var(--bg-custom);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.auth_main.steps_section .checkotp-btn {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    background: var(--primary-bg-color);
    border: 0px;
    padding: 1rem 3rem;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 8px;
    line-height: 22px;
}

.auth_main .step-container .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--primary-bg-color);
    color: var(--primary-text-color);
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.auth_main .step-container .step-circle img {
    filter: none;
}

.auth_main .step-container .step-circle.active {
    background-color: var(--primary-bg-color);
    ;
    color: #fff;
}

.auth_main .step-container .step-circle.step-complete {
    border: 1px solid var(--border-color);
    background-color: var(--bg-custom);
}

.auth_main .step-container .step-circle .success-icon {
    display: none;
}

.auth_main .step-container .step-circle.step-complete .step-count {
    display: none;
}

.auth_main .step-container .step-circle.step-complete .success-icon {
    /* display: block; */
}

.auth_main .step-container h6 {
    margin-bottom: 0;
    color: var(--primary-bg-color);
}

.auth_main .step-container p {
    margin-bottom: 0;
}

.digit-group {
    padding: 0 4rem;
}

@media(max-width:992px) {
    .digit-group {
        padding: 0;
    }
}

.digit-group .form-control {
    border-color: var(--primary-border-color);
    height: 50px;
    background-color: transparent;
}

.auth_main .form-control:focus,
.auth_main .input-group .flag-dropdown:focus,
.auth_main .input-group .contact-input:focus {
    box-shadow: none !important;
    border-color: var(--primary-border-color);
    ;
    border-bottom: 2px solid var(--primary-border-color);
    ;
}

.auth_wrapper_multisteps .separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.auth_wrapper_multisteps .separator::before,
.auth_wrapper_multisteps .separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #B4B4B4;
    margin: 0 10px;
}

.auth_wrapper_multisteps .separator span {
    color: #B4B4B4;
    font-weight: bold;
}

a.custom-link {
    color: #222222;
}

a.custom-link:hover,
a.custom-link:active {
    color: #222222;
}

.auth_wrapper_multisteps .qrcodeWrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: auto;
}

.corner-border-left:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    top: -12px;
    left: -12px;
    border-top: 3px solid #0C1D46;
    border-left: 3px solid #0C1D46;
    border-top-left-radius: 24px;
}

.corner-border-left:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    left: -12px;
    bottom: -12px;
    border-left: 3px solid #0C1D46;
    border-bottom: 3px solid #0C1D46;
    border-bottom-left-radius: 24px;
}

.corner-border-right:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    right: -12px;
    top: -12px;
    border-top: 3px solid #0C1D46;
    border-right: 3px solid #0C1D46;
    border-top-right-radius: 24px;
}

.corner-border-right:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    right: -12px;
    bottom: -12px;
    border-bottom: 3px solid #0C1D46;
    border-right: 3px solid #0C1D46;
    border-bottom-right-radius: 24px;
}

.extension-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.loader-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 30px auto;
}

.extension-loader {
    width: 100%;
    height: 100%;
    border: 8px solid var(--primary-text-color);
    border-radius: 50%;
    border-top: 8px solid transparent;
    animation: spin 1.5s linear infinite;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #222222;
}

.resetTimerWrapper {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: max-content;
    margin: auto;
    padding: 6px 15px;
}

.resetTimer {
    font-size: 18px;
    font-weight: 600;
    color: #EA4335;
}

.talisman-btn {
    font-size: 16px;
    font-weight: 600;
    background: var(--primary-text-color);
    border: 0px;
    padding: 1rem 4rem;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 10px;
    line-height: 22px;
}

.auth-error {
    width: 100% !important;
    margin-top: .25rem !important;
    font-size: .875em !important;
    color: #dc3545 !important;
}

.blue-btn {
    font-size: 16px;
    letter-spacing: 1px;
    background-color: var(--primary-btn-bg-color);
    color: #fff;
    border: 1px solid var(--primary-btn-bg-color);
    border-radius: 10px;
    padding: .6rem 1.3rem;
}

.blue-outline-btn {
    font-size: 16px;
    letter-spacing: 1px;
    background-color: transparent;
    color: var(--primary-btn-bg-color);
    border: 1px solid var(--primary-btn-bg-color);
    border-radius: 10px;
    padding: .6rem 1.3rem;
}

.blue-outline-btn:hover {
    background-color: var(--primary-btn-bg-color);
    color: #fff;
}

.mdi-eye-outline::before {
    content: "\F6CF";
}

.mdi:before,
.mdi-set {
    display: inline-block;
    font: normal normal normal 24px / 1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.toggle-password {
    cursor: pointer;
}

/* country select dropdown */
.countrycode-wrap .dropdown {
    position: relative;
    width: 80px;
    user-select: none;
}

.countrycode-wrap .dropdown-toggle {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.countrycode-wrap .dropdown-toggle img {
    width: 22px;
    height: auto;
    /* margin-right: 10px; */
}

.countrycode-wrap .dropdown-toggle .code {
    font-size: 14px;
}

.countrycode-wrap .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background: white;
    max-height: 180px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.countrycode-wrap .dropdown.open .dropdown-menu {
    display: block;
}

.countrycode-wrap .search-input {
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
}

.countrycode-wrap .option {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.countrycode-wrap .option img {
    width: 20px;
    height: 14px;
}

.countrycode-wrap .option:hover {
    background: #f0f0f0;
}

/* /country select dropdown */
.actionTimerbtn {
    color: var(--primary-text-color);
    cursor: pointer;
}

.step-container .text-success {
    display: none;
}

.step-container .text-process {
    display: none;
}


.step-container [data-status="complete"] .success-icon {
    display: block !important;
}

.step-container [data-status="complete"] .step-circle {
    border: 1px solid var(--border-color);
    background-color: var(--bg-custom);
}

.step-container [data-status="complete"] .step-count {
    display: none;
}

.step-container [data-status="complete"] .text-success {
    display: block !important;
}

.step-container [data-status="processing"] .step-circle {
    background-color: var(--primary-bg-color);
    color: #fff;
}

.step-container [data-status="processing"] .text-process {
    display: block !important;
}

#mailOtp .error,
#phoneOtp .error{
    border: 1px solid red;
}

.talisman-btn {
    font-size: 16px;
    font-weight: 600;
    background: #0a1c35;
    border: 0px;
    padding: 1rem 4rem;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 10px;
    line-height: 22px;
}

/* ======= /Register and login ============= */