/**
 * WC Popup Auth — animaciones.
 */
@keyframes wcpa-shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-7px); }
	40% { transform: translateX(7px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(4px); }
}

.wcpa-shake {
	animation: wcpa-shake 0.4s ease;
}

@keyframes wcpa-fade-up {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wcpa-view.is-active {
	animation: wcpa-fade-up 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
	.wcpa-overlay,
	.wcpa-modal,
	.wcpa-view.is-active,
	.wcpa-shake {
		animation: none !important;
		transition: none !important;
	}
}
