/* Sfondo personalizzato */
body {
    background-image: url('../img/login-bg.png'), 
                      linear-gradient(135deg, #4288c7, #174f91) !important;
    background-position: 100% 100%, 0% 0% !important;
    background-repeat: no-repeat, repeat !important;
    background-size: 100%, auto !important;
}

/* Logo personalizzato sopra il form di login */
.login-pf-header::before {
    content: '';
    display: block;
    width: 100%;
    height: 125px;
    background: url('../img/d-4_logo.png') no-repeat center / contain;
    margin-bottom: 16px;
}

/* Logo Dedalus sovrapposto in basso a sinistra */
body::after {
    content: '';
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 200px;
    height: 60px;
    background: url('../img/d-4_extend-negativo.png') no-repeat left center/contain;
    pointer-events: none;
    z-index: 10;
}