.isValidating { animation: flicker 2s infinite ease-out; } @keyframes flicker { 0% { opacity: 0.1; } 50% { opacity: 1; } 100% { opacity: 0.1; } }