.contenitore-accesso {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
    background-color: var(--colore-sfondo-pagina, #f0f4f9);
}
.scheda-accesso {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 480px;
    text-align: center;
}
.icona-accesso-wrapper {
    width: 64px;
    height: 64px;
    background-color: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.icona-accesso {
    color: #0284c7;
    font-size: 32px;
}
.titolo-accesso {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.sottotitolo-accesso {
    color: #64748b;
    margin-bottom: 2rem;
}
.azioni-accesso {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bottone-accesso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #334155;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    text-decoration: none;
}
.bottone-accesso:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.bottone-accesso img {
    width: 20px;
    height: 20px;
}
.carosello-sicurezza {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
.diapositive-sicurezza {
    list-style: none;
    padding: 0;
    margin: 0;
}
.diapositiva-sicurezza {
    display: none;
    animation: fadeIn 0.5s ease;
}
.diapositiva-sicurezza.is-attivo {
    display: block;
}
.icona-diapositiva {
    color: #059669;
    margin-bottom: 0.5rem;
}
.diapositiva-sicurezza h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}
.diapositiva-sicurezza p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}