body{
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginContainer{
    display: flex;
    max-height: 1024px;
    width: 100%;
    height: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}
.container_left {
    position: relative;
    background: linear-gradient(90deg, #1D3450 0%, #2E0C37 100%);
    color: var(--clr-white);
    width: 40%;
    min-width: 450px;
    padding: 2.7rem;
}
.logo_brand{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 3.2rem;
}
.container_left_bg{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: -webkit-fill-available;
}
.dashBoardImag{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    height: 50%;
}
.sliderContent{
    position: relative;
    height: 180px;
    z-index: 1;
    overflow: hidden;
    margin-top: 120px;
    text-align: center;
}
.sliderText{
    position: absolute;
    width: 100%;
    left: 100vw;
}
.sliderText h1{
    font-weight: 600;
    font-size: 36px;
    line-height: 45px;
}
.sliderText p{
    margin-top: 8px;
    font-size: 18px;
    line-height: 23px;
}
.sliderText.sliderActive{
    left: 0;
    transition:all 0.3s ease-in-out;
}
.sliderPagination{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}
.paginationDot1, .paginationDots, .paginationDot3{
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: var(--clr-white);
    border-radius: 50%;
    cursor: pointer;
}
.paginationDot1.sliderActive, .paginationDots.sliderActive, .paginationDot3.sliderActive {
    width: 25px;
    border-radius: 2.5rem;
    height: 3px;
    background-color: var(--clr-white);
}
.loginFormSec{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.formBox{
    box-shadow: 0px 2px 12px 0px #00000014;
    background-color: #fff;
    max-width: 550px;
    width: 90%;
    border-radius: 8px;
    padding: 24px;
}
.greeting_word{
    font-size: 14px;
    line-height: 18px;
    color: var(--clr-gray);
    margin-bottom: 12px;
}
.recovery .greeting_word{
    margin-top: 12px;
    margin-bottom: unset;
}
.formBox h2{
    font-size: 28px;
    font-weight: 600;
    color: var(--clr-neutral-black);
    line-height: 36px;
}
.signInForm{
    margin-top: 46px;
}
.inputSec{
    position: relative;
    margin-bottom: 24px;
}
.inputSec:last-of-type{
    margin-bottom: unset;
}
.inputSec .label_text{
    font-size: 14px;
    font-family: "Archivo", sans-serif;
    display: block;
    margin-bottom: 8px;
}
.passField{
    position: relative;
}
.commonInput{
    margin-top: 4px;
    width: 100%;
    height: 45px;
    border-radius: 4px;
    padding: 12px 32px 12px 16px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    outline: 0;
    position: relative;
}
.commonInput::placeholder{
    color: var(--clr-txt-placeholder);
    font-size: 16px;
}
.passIcon{
    position: absolute;
    top: calc(50% + 5px);
    transform: translateY(-50%);
    right: 8px;
    cursor: pointer;
}
.checkboxAndforgot{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.checkboxSec label{
    font-size: 16px;
    color: var(--clr-txt-black);
    padding-left: 8px;
}
.frgPass{
    text-decoration: none;
    font-size: 16px;
    color: #4F4BAF;
    font-weight: 400;
}
.btnLogin{
    text-transform: capitalize;
    margin-top: 40px;
    color: var(--clr-white);
    background-color: var(--clr-purple);
}
.cntGoogle{
    margin-top: 20px;
    background-color: var(--clr-white);
    box-shadow: 0px 4px 4px 0px #0000000A;
    border: 1px solid #E3E3E3;
}
.cntGoogle a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #518EF8;
    font-size: 16px;
    text-decoration: none;
    height: 100%;
}
.remPass{
    margin-top: 45px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    display: block;
}
.remPass a{
    color: #1A63DB;
    text-decoration: none;
}
@media(min-width:1920px){
    .loginContainer{
        max-width: 1440px;
    }
}