/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .div-login {
        background-color: rgba(255, 255, 255, 0.8);
        width: 90%;
        margin: 0 auto;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .div-login {
        background-color: rgba(255, 255, 255, 0.8);
        width: 70%;
        margin: 0 auto;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .div-login {
        width: 50%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .div-login {
        width: 40%;
    }
}

/* Extra large devices */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* Extra extra large */
@media (min-width: 1400px) and (max-width: 1919.98px) {}