/* !Login Page */

.container-form {
    width: 50%;

    @media (max-width: 1000px) {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
}

.container-slider {
    width: 50%;
    position: relative;

    @media (max-width: 1000px) {
        display: none;
    }
}



/* !Forgot Password Page */

.container-forgot-password {
    width: 100%; 
    position: relative; 
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.container-forgot-password .container-form {
    width: 30%;

    @media (max-width: 1000px) {
        width: 70%;
    }
}