/* Email Field Styles - Structural CSS Only */

/* All visual styles (colors, borders, padding, fonts) are applied dynamically via PHP from Customize settings */

/* Email confirmation wrapper */
.email-confirmation-wrapper {
	margin-top: 15px;
}

.email-confirm-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;

	/* Color, font-size, font-family set dynamically */
}

/* Email confirmation field structure */
.email-confirmation-wrapper input[type="email"] {
	width: 100%;
	max-width: 100%;
	transition: all 0.3s ease;
	box-sizing: border-box;

	/* All visual styles (padding, border, border-radius, font-size, color, background, box-shadow, font-family) set dynamically */
}

/* Email confirmation error states */
.email-confirmation-error,
.email-domain-error {
	border-color: #e74c3c !important;
	box-shadow: 0 0 0 2px rgb(231 76 60 / 20%) !important;
}

.email-confirmation-error-message,
.email-domain-error-message {
	color: #e74c3c;
	font-size: 13px;
	margin-top: 5px;
	line-height: 1.4;
}

/* Email field focus states - visual styles set dynamically */
.email-confirmation-wrapper input[type="email"]:focus {
	outline: none;

	/* border-color and box-shadow set dynamically */
}

/* Responsive adjustments */
@media (width <= 768px) {
	.email-confirmation-wrapper {
		margin-top: 12px;
	}

	.email-confirmation-error-message,
	.email-domain-error-message {
		font-size: 12px;
	}
}
