.btn {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn.small {
    padding: 8px 14px;
    color: rgb(255, 255, 255);
}

.icon-admin {
    position: relative;
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICONA LUCCHETTO */
.icon-admin::before {
    content: "🔒";
    font-size: 18px;
    line-height: 1;
}

.hero-btn {
    width: 35%;
    padding: 16px 34px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 999px;
    background: #ffffff;
    color: #1e3a8a;
    /* blu coerente col menu */
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

@media (max-width: 768px) {
    .hero-btn {
        width: 90%;
    }
}