* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'poppins-regular';
    src: url('../../font/Poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'inter_18pt-regular';
    src: url('../../font/Inter/Inter_18pt-Regular.ttf') format('truetype');
}

:root {
    --font-family-poppins: "poppins-regular", sans-serif;
    --font-family-inter: "inter_18pt-regular", sans-serif;
}

body {
    margin-bottom: 0px;
}
/* Style page */
.loginScreen {
    background: rgb(20,153,150);
    background: linear-gradient(180deg, rgba(20,153,150,1) 0%, rgba(44,143,141,1) 56.00000000000001%, rgba(232,255,255,1) 56.00000000000001%, rgba(255,255,255,1) 100%);
    height: 100vh;
}
    /* Start left section */
    .loginScreen .left-section .logo {
        margin-top: 32px;
    }

    .loginScreen .left-section h1 {
        color: #fff;
        margin-top: calc(121px - 97px);
        font-size: 3rem;
        font-family: var(--font-family-poppins);
        font-weight: 600;
    }

    .loginScreen .left-section h2 {
        color: #fff;
        font-size: 24px;
        font-weight: 400;
        font-family: var(--font-family-poppins);
    }

    .loginScreen .left-section .robot {
        margin-top: calc( 260px - 229px);
    }

        .loginScreen .left-section .robot img {
            width: 75%;
        }
    /* END left section */

    /* start login-container */
    .loginScreen .right-section {
        display: flex;
        justify-content: center;
        height: calc(100vh - 54px);
        align-items: center;
    }

    .loginScreen .login-container {
        /* background-color: #fff; */
        /* padding: 44px; */
        border-radius: 12px;
        max-width: 539px;
        width: 100%;
        /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); */
        /* min-height: 695px; */
    }

        .loginScreen .login-container .login-box h4 {
            font-size: 21px;
            margin-bottom: 10px;
            color: #000;
            font-family: var(--font-family-poppins);
            font-weight: 400;
        }

        .loginScreen .login-container .login-box h6 {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 0px;
            font-family: var(--font-family-poppins);
            font-weight: 600;
        }

        .loginScreen .login-container label {
            font-size: 1rem;
            margin-top: 15px;
            color: #333;
            margin-bottom: 8px;
            font-family: var(--font-family-poppins);
            font-weight: 400;
        }

    .loginScreen .form-control:focus {
        box-shadow: none;
    }

    .loginScreen .login-container input {
        margin-top: 5px;
        border: 1px solid #EEEEEE;
        border-radius: 30px;
        height: 65px;
        color: #000;
        font-size: 14px;
        /* padding-left: 40px; */
        padding: 10px 50px;
    }

        .loginScreen .login-container input::placeholder {
            color: #808080;
            opacity: 0.7;
        }

    .loginScreen .login-container .password-container {
        position: relative;
    }

        .loginScreen .login-container .eye {
            position: absolute;
            right: 10px;
            top: 18px;
            cursor: pointer;
            width: 25px;
            filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(1%) hue-rotate(162deg) brightness(93%) contrast(87%);
        }

    .loginScreen .login-container .forgot-password {
        text-align: left;
        font-size: 14px;
        color: #333333;
        text-decoration: none;
        display: block;
        margin-top: 5px;
        font-family: var(--font-family-poppins);
    }

    .loginScreen .login-container button {
        background: #E20714;
        color: white;
        padding: 12px;
        font-size: 1rem;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s ease;
        width: 100%;
        max-width: 451px;
        height: 54px;
        box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
        font-family: var(--font-family-poppins);
        margin-top: 30px;
    }

label.error,
label#email-error,
label#password-error,
label#confirm_password-error {
    color: red !important;
    font-size: 13px !important;
    margin: 0px !important;
    width: 100%;
}

.error-outline {
    border: 1px solid red !important;
}

/* Style page of otp */
.verification_form {
    font-family: var(--font-family-poppins);
}

    .verification_form h6 {
        font-size: 21px !important;
        font-family: var(--font-family-poppins) !important;
        font-weight: 400 !important;
    }

        .verification_form h6 + p {
            font-size: 14px;
            font-family: var(--font-family-poppins);
        }

    .verification_form span {
        color: rgb(20,153,150);
        color: rgba(226, 7, 20, 1);
    }

.confirmation-code {
    display: flex;
    margin: 10px 0 40px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

    .confirmation-code .form-control {
        text-align: center;
        padding: 10px 0 !important;
        font-size: 20px !important;
    }


        .confirmation-code .form-control:focus {
            border: 2px solid #e20714 !important;
        }

.resend-code-btn {
    background: #E20714;
    display: inline-block;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    height: 54px;
    box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
}

    .resend-code-btn a {
        color: white;
    }

.resendLoginOtp:hover {
    color: #fff;
}

.resendLoginOtp:active {
    color: #fff !important;
    border-color: transparent !important;
}

/* Style for Page of Reset Password */

new_password_form input[type="checkbox"] {
    width: 20px;
    height: 20px !important;
    border: 1px solid #9E9E9E !important;
    border-radius: 5px !important;
    appearance: none;
}

    new_password_form input[type="checkbox"]:checked {
        background-color: blue; /* Change color when checked */
        border-color: darkblue;
    }

    new_password_form input[type="checkbox"] + label {
        font-family: var(--font-family-inter) !important;
        color: #5F5F5F !important;
        font-weight: 500 !important;
    }

forget_1_step_password h6, new_password_form h6 {
    font-size: 21px !important;
    font-family: var(--font-family-poppins) !important;
    font-weight: 400 !important;
}

sign_in form {
    /* min-height: 470px; */
}

forget_1_step_password form {
    min-height: 500px;
}

login_2_step_verification_form_otp form {
    min-height: 410px;
}

new_password_form form {
    min-height: 500px;
}
/* responsive */
@media (max-width: 768px) {
    .loginScreen .left-section .logo {
        text-align: center;
        margin: 32px 0px;
    }

    .loginScreen .left-section h1,
    .loginScreen .left-section h2,
    .loginScreen .left-section .robot {
        display: none;
    }
}


.password-container .show-password {
    position: absolute;
    top: 8px;
    padding: 11px;
    color: #696969;
    right: 0px;
}
.loginScreen .login-container .password-container .show-password {
    background-image: url('../../img/eye-slah.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 61px;
    display: inline-block;
    height: 49px;
    background-size: 21px;
}

    .loginScreen .login-container .password-container .show-password.showedInput {
        background-image: url('../../img/eye.svg');
    }
.login-box {
    position: relative
}

.language-icon {
    position: absolute;
    right: 0px;
    filter: brightness(0);
}




/* Added New Style */
.bg-left-section {
    display: flex;
    background: linear-gradient(to right top, rgba(226, 7, 20, 1) 0% /*bottom-left color*/, rgba(208, 5, 18, 0.5) 50% /*middle color*/, rgba(145, 0, 9, 1) 100% /*top-right color*/ ), linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    justify-content: center;
    align-items: center;
    margin-top: -310px;
}

.bg-right-section {
    background-color: #F9F9FB;
}

.left-content-img {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.icon-input {
    top: 24px;
    width: 20px;
    left: 25px;
    z-index: 1;
}
    .icon-input.icon-input-mail {
        top: 28px;
    }
    .confirmation-code input {
        border: 1px solid #9E9E9E !important;
        border-radius: 10px !important;
    }
/* Preloader */
.handle-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background-color: #ffffffe6;
}

.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 18px;
    background: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    right: 15px;
    top: 15px;
    border-radius: 50%;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

    .handle-preloader .animation-preloader .fav {
        position: absolute;
        width: 65px;
        transform: translate(-50%, -50%);
        top: 74px;
        left: 50%;
        /*filter: brightness(0) invert(1);*/
    }

    .handle-preloader .animation-preloader .spinner {
        animation: spinner 1.5s infinite linear;
        border-radius: 50%;
        height: 130px;
        margin: 0 auto 16px auto;
        width: 130px;
        border: 3px solid #e20714;
        border-top-color: rgba(255, 255, 255, 0.5);
    }

    .handle-preloader .animation-preloader .txt-loading {
        text-align: center;
        user-select: none;
        position: relative;
        left: 0;
        top: -100px;
    }

        .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
            animation: letters-loading 4s infinite;
            content: attr(data-text-preloader);
            left: 0;
            opacity: 0;
            top: 0;
            position: absolute;
        }

        .handle-preloader .animation-preloader .txt-loading .letters-loading {
            font-weight: 500;
            letter-spacing: 11px;
            display: inline-block;
            position: relative;
            font-size: 60px;
            line-height: 70px;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: #e20714;
        }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
                animation-delay: 0.2s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
                animation-delay: 0.4s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
                animation-delay: 0.6s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
                animation-delay: 0.8s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
                animation-delay: 1s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
                animation-delay: 1.2s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
                animation-delay: 1.4s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
                animation-delay: 1.6s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
                animation-delay: 1.8s;
            }

            .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
                animation-delay: 2s;
            }

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
}

    .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
        color: #e20714;
    }

.request-link {
    margin: auto !important;
    width: 300px !important;
    line-height: 47px;
    margin-bottom: 30px !important;
}
.style-form-height .form-group #MobileNumber {
    padding-left: 100px
}
login_form {
    display: block;
    width: 445px;
    max-width: 100%;
}
.form-width {
    display: block;
    width: 445px;
    max-width: 100%;
}
.back-btn:focus {
    box-shadow: none;
}
.back-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px;
    width: max-content;
}

/* Animación del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}
.logo-mobile-login {
    display: none;
}
.fa-arrow-right:before {
    content: "\f060";
}

.password-check {
    position: relative;
}

    .password-check ul {
        position: absolute;
        z-index: 9;
        background-color: #f8f8f8;
        box-shadow: 0 0 3px #777;
        padding: 10px;
        border-radius: 5px;
        margin: 10px 5px 5px;
    }

        .password-check ul:after {
            content: '\f0d8';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 17px;
            top: -18px;
            font-size: 21px;
            color: #cdcdcd;
        }

        .password-check ul li {
            font-size: 13px;
            position: relative;
            padding-inline-start: 20px;
            list-style: none
        }

            .password-check ul li:before {
                content: '\f057';
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                position: absolute;
                right: 0;
            }

            .password-check ul li.sucsess {
                color: #1f7f2f;
            }

                .password-check ul li.sucsess:before {
                    content: '\f058';
                }
            .password-check ul li:before {
                right: unset;
                left: 0;
            } 
@media(max-width:992px) {
    .bg-left-section {
        display: none
    }
    .logo-mobile-login {
        display: block;
        margin-bottom: 35px;
    }
        .logo-mobile-login img {
            margin: auto;
            display: block;
        }
    .left-content-img img {
        display: none
    }
 }
    /* Animación del preloader */
    @keyframes spinner {
        to {
            transform: rotateZ(360deg);
        }
    }

    @keyframes letters-loading {
        0%, 75%, 100% {
            opacity: 0;
            transform: rotateY(-90deg);
        }

        25%, 50% {
            opacity: 1;
            transform: rotateY(0deg);
        }
    }
