/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    body {
        border: 3px solid orange;
    }

    .left-panel {
        width: 0%;
    }

    .right-panel {
        background-image: url(../img/background.jpg);
        background-size: cover;
        border: 0;
        height: 100vh;
        transform: none !important;
        width: 100%;
    }

    .login-box {
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        transform: none !important;
        width: 90%;
    }


}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        border: 3px solid green;
    }

    .left-panel {
        width: 0%;
    }

    .right-panel {
        background-image: url(../img/background.jpg);
        background-size: cover;
        border: 0;
        height: 100vh;
        transform: none !important;
        width: 100%;
    }

    .login-box {
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        transform: none !important;
        width: 90%;
    }


}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        border: 3px solid purple;
    }

    .left-panel {
        width: 0%;
    }

    .right-panel {
        background-image: url(../img/background.jpg);
        background-size: cover;
        border: 0;
        height: 100vh;
        transform: none !important;
        width: 100%;
    }

    .login-box {
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        transform: none !important;
        width: 70%;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    body {
        border: 3px solid brown;
    }


}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    body {
        border: 3px solid yellow;
    }

    .left-panel {
        width: 60%;
    }

    .login-box {
        transform: rotate(-13deg) translateX(150px) translateY(-150px);
    }


}


/* estilos personalizados para pantallas XXL */
@media (min-width: 1400px) and (max-width: 1599.98px) {
    body {
        border: 3px solid cornflowerblue;
    }

    .left-panel {
        width: 60%;
    }

    .login-box {
        transform: rotate(-13deg) translateX(200px) translateY(-150px);
    }


}