/**
 * Anti-Bot Protection CSS
 *
 * @package WooCommerce-Simple-Registration
 * @since 1.6.0
 */

/* Hide honeypot fields completely from view but keep them in DOM */
.wsr-honeypot-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	white-space: nowrap !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Math CAPTCHA styling */
.wsr-math-captcha {
	margin-bottom: 20px !important;
}

.wsr-math-captcha label {
	font-weight: 600;
	color: #333;
}

.wsr-math-captcha input[type="text"] {
	max-width: 100px;
	font-size: 16px;
}

/* Anti-bot container */
.wsr-anti-bot-container {
	position: relative;
	width: 100%;
}

/* Loading state during validation */
.wsr-validating .woocommerce-Button {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

/* Success feedback */
.wsr-validation-success {
	border-color: #46b450 !important;
}

/* Error feedback */
.wsr-validation-error {
	border-color: #dc3232 !important;
}
