/**
 * Custom Animations
 * 
 * Additional CSS animations used throughout the wedding page.
 */

/* Shake animation for error feedback (e.g., wrong PIN) */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.animate-shake {
    animation: shake 0.3s ease-in-out;
}
