@keyframes blink-error {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.invalid-feedback.blink {
    animation: blink-error 0.5s ease-in-out 3;
}
