.mainContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.LoginContainer{
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 20%);
    border-top: #eb5d1e solid 3px;
    border-bottom: #eb5d1e solid 3px;
    height:80vh;
    width:80vw;
    background:white;
}
.formContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginFormBtn{
    display:flex; 
    justify-content:space-between; 
    margin-top: 20px;
}

@media only screen and  (max-width:767px){
    .ImgSection{
        display:none;
    }
    .LoginContainer{
        height: auto;
        margin-top:20px;
    }
    .loginFormBtn{
        justify-content: center;
        font-size: 18px;
    }
}