/* Stili per la sezione di pre-registrazione */
.scroll-trigger {
    opacity: 0;
}

.scroll-trigger.show {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stili form */
.glow-effect:hover {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

/* Stili alert errori */
.bg-red-50 {
    background-color: rgba(254, 242, 242, 1);
}

.text-red-400 {
    color: rgba(248, 113, 113, 1);
}

.text-red-700 {
    color: rgba(185, 28, 28, 1);
}

.text-red-800 {
    color: rgba(153, 27, 27, 1);
}