/**/
.login .row{
    /* align-items: center; */
}
.login .col{
    width: 50%;
}
.login{
    padding-top: 1rem;
    margin-bottom: 1rem;
}


.blue-wrap{
    height: 100%;
    background: var(--blue);
    padding: 1.5rem;
    border-radius: var(--br);
}
.blue-wrap *{
    color: var(--white);
}
.blue-wrap h2,
.form-col h2{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}
.blue-wrap .logo,
.form-col .logo{
    height: 36px;
    margin-bottom: 3rem;
}
.benefit-slider-wrap{
    position: sticky;
    top: 2rem;
}
.blue-wrap .benefit-card{
    text-align: center;
    margin: 0 auto;
}
.benefit-card.slick-slide img{
    display: inline-block;
    max-height: 200px;
}
.benefit-card .title,
.benefit-card .desc{
    max-width: 400px;
    margin: 0 auto;
}
.benefit-card .title{
    font-family: "Poppins Semibold";
    margin-bottom: 1rem;
}
.benefit-card .desc{
    font-size: 14px;
    color: var(--light-gray);
}

.blue-wrap .dots-wrap{
    margin-top: 3rem;
}
.slick-dots{
    display: flex;
    justify-content: center;
}
.slick-dots li.slick-active .dot{
    background: var(--white);
}
.slick-dots .dot{
    margin: 0 5px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dark-blue);
}

/*Form Col*/
.form-col{
    padding-top: 2rem;
}
.form-col .logo{
    display: none;
}
.form-col h2, .form-col p{
    margin-bottom: 1rem;
}
.form-col .title p{
    font-size: 14px;
    color: var(--gray);
}
.form-col .title{
    margin-bottom: 2rem;
    text-align: center;
}
.form-wrap{
    display: flex;
}
.form-wrap > div{
    margin-right: 1rem;
}
.form-wrap > div:last-child{
    margin-right: 0;
}
.form-container{
    margin-bottom: 2rem;
}
.form-container label{
    display: inline-block;
    color:  var(--gray);
    font-size: 14px;
    margin-bottom: 1rem;
}
.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;
    font-size: 14px;
}
.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-col form button{
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}
.password-btn{
    cursor: pointer;
}
.form-col .no-acc *{
    font-size: 14px;
}
.form-col .no-acc{
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

footer{
    padding: 0;
    padding-bottom: 1rem;
    background: var(--white);
}
footer *{
    color: var(--gray);
}
footer .fd-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .title{
    display: flex;
    align-items: center;
}
footer .title img{
    height: 24px;
    margin-right: 1.5rem;
}
footer .title div{
    position: relative;
    padding-top: 8px;
    padding-left: 1rem;
    font-family: "Poppins Semibold";
    font-size: 12px;
}
footer .title div::after{
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 2px;
    height: 20px;
    margin-top: 3px;
    background: var(--gray);
}
footer .copyright{
    /* color: var(--light-gray); */
    font-size: 12px;
}

@media(max-width:768px){
    .login .col{
        width: 100%;
    }
    .login .col:nth-child(2){
        margin-bottom: 2rem;
    }
    .login .row{
        flex-direction: column-reverse;
    }

    .form-col .logo{
        display: block;
    }
    .form-wrap{
        flex-direction: column;
    }
    .form-wrap > div{
        margin-right: 0;
    }
    footer .title{
        margin-bottom: 1rem;
    }
    footer .fd-content{
        flex-direction: column;
    }
}