@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root{
    --blue : #1a7efb;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

a{
    text-decoration: none;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}

img{
    max-width: 100%;
}

.lg-backdrop{
    opacity: 0.7!important;
}
.lg-toolbar .lg-icon,
.lg-next,
.lg-prev,
.lg-counter{
    color: #fff!important;
}


#preloader img{
    width: 100px;
}
#preloader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    background: #000000bf;
    z-index: 99999;

}


/* ============================= Header ============================== */

/* ======================= Header ======================= */

header{
    /* position: sticky; */
    top: 0;
    background: #fff;
    z-index: 999;
}
header .container{
    max-width: 880px;
}
header .empty{
    width: 114px;
}
header nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav .logo{
    width: 114px;
}
header nav .logo img{
    height: 60px;
    padding: 10px 0;
}
header nav ul{
    display: flex;
    align-items: center;
    gap: 4px;
}
header nav ul li{
    font-size: 16px;
    font-weight: 800;
    color: #555555;
}
header nav ul li a{
    padding: 22px 20px;
    display: inline-block;
    font-weight: 600;
    transition: color 0.3s ease;
}
header nav ul li.active a{
    color: var(--blue);
}
header nav ul li a:hover{
    color: var(--blue);
}
header nav ul li a img{
    height: 30px;
}

/* ================================ footer ====================== */

footer{
    /* margin: 60px 0; */
    padding: 60px 0;
}
footer .footer_box{
    text-align: center;
}
footer .footer_box p{
margin-bottom: 5px;
}
footer .footer_box p.top_links{}
footer .footer_box p.top_links a{
    color: var(--blue);
}
footer .footer_box p.dull{
    margin-bottom: 0;
    color: grey;
}




/* ========================= Register Page ========================== */


#register_page {
    padding-top: 60px;
}
#register_page .container {
    max-width: 880px;
}

#register_page .form_box select.is-invalid,
#register_page .form_box textarea.is-invalid,
#register_page .form_box input.is-invalid {
    border: 1px solid #ff0000;
}

#register_page .error.text-danger {
    font-size: 12px;
    margin-top: 4px;
}


#register_page .form_box .form-group.cus_required label::after{
    color: #f56c6c;
    content: " *";
    margin-left: 3px;

}
#register_page .form_box select,
#register_page .form_box textarea,
#register_page .form_box input {
    background-clip: padding-box;
    background-image: none;
    border: 1px solid #dadbdd;
    border-radius: 7px;
    color: #606266;
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-align: inherit;
    min-height: 3rem;
    background-color: rgba(150, 144, 162, 0.08);
    font-size: 1.025rem;
}
#register_page .form_box {
    padding: 50px;
    background: #fff;
    box-shadow: 0px 0px 33px -5px rgba(166.99999999999997, 166.99999999999997, 166.99999999999997, 0.35);
    border-radius: 10px;
}
#register_page .form_box h3 {
    text-align: center;
    font-weight: 800;
    font-size: 30px;
    margin: 30px 0;
}
#register_page .navigation_btn{
    text-align: right;
}

#register_page .navigation_btn button{
    padding: 5px 30px;
}


#register_page .stepper {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    counter-reset: step;
    padding: 0;
    margin-bottom: 30px;
}

#register_page .stepper li {
    position: relative;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    font-weight: bold;
    color: gray;
    counter-increment: step;
}

#register_page .stepper li::before {
    content: counter(step);
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #555;
    z-index: 3;
    position: relative;
}

#register_page .stepper li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ddd;
    top: 15px;
    left: -50%;
    z-index: 1;
}

#register_page .stepper li:first-child::after {
    content: none;
}

#register_page .stepper li.active {
    color: #007bff;
}

#register_page .stepper li.active::before {
    background: #007bff;
    color: white;
}

#register_page .stepper li.active::after {
    background: #007bff;
}



/* ============================= Login Page ========================= */

#login_page{}
#login_page .login_img_box{
    position: relative;
    height: 100%;
}
#login_page .login_img_box img{
    width: 80%;
    position: absolute;
    /* height: 100%; */
    z-index: 1;
    right: -77px;
    bottom: 0;
}

#login_page .login_img_box .login_img_box_content{
    position: relative;
    z-index: 1;
    height: 100%;
    /* background: linear-gradient(180deg, #0000007a 0%, #0039ff6b 100%); */
    padding: 30px;
}
#login_page .login_img_box .login_img_box_content .logo{}
#login_page .login_img_box .login_img_box_content .logo img{
    position: unset;
    display: block;
    object-fit: unset;
    width: 50%;
}
#login_page .login_img_box .login_img_box_content .content ul{}
#login_page .login_img_box .login_img_box_content .content ul li{
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    border-left: 4px solid #fff;
    margin-top: 30px;
    padding-left: 20px;
}

#login_page .container{
    background: #fff;
    box-shadow: 0px 0px 33px -5px rgba(0, 0, 0, 0.33);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    max-width: 1140px;
}

#login_page .card{
    border: unset;
}

#login_page .card .card-body input{
    background: #e8f0fe;
}
#login_page .card .card-body .heading{
    margin-bottom: 30px;
    border-bottom: 2px solid #000;
    padding-bottom: 16px;
}
#login_page .card .card-body .heading h4 span{
    color: #1a7efb;
}
#login_page .card .card-body .heading h4{
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 700;
}
#login_page .card .card-body button{

}
#login_page .card .card-body .register_btn a{
    color: #007bff!important;
    font-weight: 600;
}
#login_page .card .card-body{
    padding: 60px 120px;
}



@media only screen and (max-width: 620px) {
#register_page .form_box{
        padding: 50px 20px;
    }
    #login_page .card .card-body{
        padding: 30px;
    }
    #login_page .login_img_box img{
        display: none;
    }
    
}