/* Prevent scrolling beyond viewport */
html, body {
    height: 100%;
}

#page-login {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Slideshow container - completely out of document flow */
.login-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.login-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.login-slideshow .slide.active {
    opacity: 1;
}

#page-login .page-card-head h4 {
    color: #ffffff;
}

/* Compact footer */
.web-footer {
    padding: 0px !important;
    min-height: unset !important;
    height: auto !important;
}

.web-footer .footer-container,
.web-footer .container {
    padding: 0px !important;
    margin: 0 auto;
}