/**
 * Stili per l'integrazione Contact Form 7
 * Reset Advanced Plugin
 */

@keyframes glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(0, 150, 255, 1);
    }
}

.wpcf7.glow-effect {
    animation: glow 1.5s ease-in-out infinite;
}
