.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #000;
}

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

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

/* Ensure login content is readable */
.task-login #layout-content {
    background: transparent !important;
}

.task-login #login-form {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode.task-login #login-form {
    background: rgba(47, 58, 63, 0.85);
}

.task-login #logo {
    top: 10vh !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
