/**
 * WP-Members Forms CSS
 *
 * Styles for form submission states.
 * 
 * @package WP-Members
 */

/* Submitting state for buttons */
.wpmem-submitting {
	opacity: 0.6;
	cursor: wait !important;
	pointer-events: none;
}

/* Optional: Add a loading animation */
.wpmem-submitting:after {
	content: "...";
	animation: wpmem-dots 1.5s infinite;
}

@keyframes wpmem-dots {
	0%, 20% {
		content: ".";
	}
	40% {
		content: "..";
	}
	60%, 100% {
		content: "...";
	}
}

