/**
 * Form UX Enhancement Styles
 * Loading spinner overlay for Gravity Forms on landing pages.
 */

.wdm-form-loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

.wdm-form-loading-content {
	text-align: center;
}

.wdm-form-loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #e0e0e0;
	border-top-color: #0073aa;
	border-radius: 50%;
	animation: wdm-form-spin 0.7s linear infinite;
	margin: 0 auto 16px;
}

.wdm-form-loading-text {
	font-size: 16px;
	color: #333;
}

@keyframes wdm-form-spin {
	to { transform: rotate(360deg); }
}
