body{
    all: unset;
    font-family: sans-serif;
}

/* LOGIN FOMR */
.login-page{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
}
.left-side{
    width: 50vw;
    overflow: hidden;
}
.login_form_background img{
    width: 100%;
    min-height: 345px;
    object-fit: cover;
}
.login_form{
    display: flex;
    align-items: center;
}
.right_side{
    width: 50vw;
    background-color: #f8fcff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login_form_side{
    margin: 0 auto;
}
.welcome_txt{
    font-size: 35px;
}
.slogan-text{
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    margin: 10px 0;
    letter-spacing: 1px;
}
.sign_heading{
    font-size: 40px;
    margin: 20px 0;
}
.login_form_side input{
    padding: 15px 10px;
    margin: 10px 0px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 7px;
    transition: .3s ease;
    font-size: 15px;
    width: 95%;
    width: -moz-avaible;
    width: -webkit-fill-available;
}
.login_form_side input:focus{
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.781);
}
.login_btn button{
    all: unset;
    padding: 15px 10px;
    color: white;
    width: 95%;
    width: -moz-avaible;
    width: -webkit-fill-available;
    text-align: center;
    background-color: #005cbb;
    margin-top: 10px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s ease;
}
.login_btn button:hover{
    background-color: #107ae4;
}
.login_form_side{
        padding: 0 20px;
    }
/* @media only screen and (min-width:1300px){
    .website_body{
        width: 1300px;
        margin: auto;
    }
} */
 @media only screen and (max-width:1100px){
    .left-side{
        display: none;
    }
    .right_side{
        width: 100vw;
    }
    .login_form_side{
        margin: 0;
        padding: 0 20px;
    }
 }
 @media only screen and (max-width:450px){
    .login_form_side{
        margin: 0;
        padding: 0 20px;
    }
 }