.login-wrap{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}
.login-wrap .logo-title{
    position: absolute;
    padding: 1.5rem;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    z-index: 101;
}
/* .logo-title.regis{
    border-bottom: 1px solid var(--light-gray);
} */
.logo-mobile{
    display: none;
}
.logo-title img{
    height: 36px;
}
.logo-title div{
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 12px;
}
.logo-title div::before{
    content: "";
    width: 2px;
    height: 32px;
    border-radius: 1000px;
    background: var(--white);
    display: inline-block;
    margin: 0 .5rem;

}
.form-wrap, .img-slider{
    width: 50%;
    height: 100vh;
    position: relative;
}
.form-wrap{
    padding: 0 1.5rem;
    padding-top: 5rem;
    overflow-y: scroll;
}
.form-section{
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 450px;
    margin: 0 auto;
}

.benefit-card{
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.benefit-card .detail{
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    color: var(--white);
}
.benefit-card .title,
.benefit-card .desc{
    max-width: 500px;
}
.benefit-card .title{
    font-family: "Poppins Semibold";
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.benefit-card .cat{
    font-family: "Poppins Semibold";
    font-size: 14px;
    margin-bottom: 0;
    color: #FFAF00;
}
.benefit-card .desc{
    font-size: 14px;
}
.benefit-slider .benefit-card::before{
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 39.58%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}
.benefit-slider, .benefit-card.slick-slide{
    height: 100vh;
    min-height: initial;
}



/**/
.container-fluid{
    padding-left: 1.5rem;
    padding: 1.5rem
}

.login .row{
    align-items: center;
}
.login .col{
    width: 50%;
}


.slick-dots{
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: center;
}
.slick-dots li.slick-active .dot{
    background: var(--white);
}
.slick-dots .dot{
    margin: 0 5px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
}

/*Form Col*/
.form-section h2, .form-section p{
    margin-bottom: 1rem;
}
.form-section .title p{
    font-size: 14px;
    color: var(--gray);
}
.form-section .title{
    margin-bottom: 2rem;
    text-align: center;
}
.form-container{
    margin-bottom: 1rem;
}
.form-container label{
    display: inline-block;
    color:  var(--gray);
    font-size: 14px;
    margin-bottom: .5rem;
}
.form-container .input-wrap{
    display: flex;
    align-items: center;
    padding: 10px 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 200px;
}
.form-container .input-wrap .icon{
    height: 20px;
    margin-right: 1rem;
    opacity: 0.4;
    transition: ease 0.5s opacity;
}
.form-container .input-wrap:focus-within .icon{
    opacity: 1;
}
.form-container .input-wrap input{
    flex: 1;
}
.form-container input::placeholder{
    color: rgba(0,0,0,0.2);
}
.form-container .password-btn{
    opacity: 0.5;
}
.form-container .password-btn.active{
    opacity: 1;
    
}

.form-container.fcb, .fcb .cb-wrap{
    display: flex;
    align-items: center;
}
.form-container.fcb *{
    font-size: 14px;
}
.form-container.fcb{
    justify-content: space-between;
}
.cb-wrap input[type='checkbox']{
    border-radius: var(--br-sm);
    border: 1px solid var(--light-gray);
    margin-right: .5rem;
}
.form-section form button{
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
.password-btn{
    cursor: pointer;
}
.form-section .no-acc *{
    font-size: 14px;
}
.form-section .no-acc{
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.copyright{
    color: var(--gray);
    margin-top: auto;
    margin-bottom: 1.5rem;
    font-size: 12px;
    text-align: center;
}


@media(max-width:768px){
    .login-wrap .logo-title{
        background: none;
        width: initial;
    }
    .logo-mobile{
        display: initial;
    }
    .logo-desktop{
        display: none;
    }
    .logo-title div{
        color: var(--white);
    }
    .logo-title div::before{
        background: var(--white);
    }
    .login-wrap{
        flex-direction: column-reverse;
    }
    .form-wrap, .img-slider{
        width: 100%;
        height: initial;
    }
    .form-wrap{
        padding-top: 2rem;
    }
    .copyright{
        margin-top: 2rem;
    }
    .benefit-slider, .benefit-card.slick-slide{
        height: 350px;
    }
    .benefit-card .cat{
        font-size: 12px;
    }
    .benefit-card .title{
        font-size: 1rem;
    }
    .benefit-card .desc{
        font-size: 12px;
    }
    .slick-dots .dot{
        height: 7px;
        width: 7px;
    }
}