body {
    /* background image on top left */
    background-image: url("../images/login-chicken-1.svg"), url("../images/login-chicken-2.svg") !important;
    background-size: 250px 250px, 350px 350px;
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right;
    background-attachment: fixed, fixed;
}

@media (max-width: 500px) {
    body {
        background-image: none !important;
        /* Hide the background image on mobile */
    }
}