/*
 * Deliberately thin: Flatsome already styles .form-row / .input-text on the
 * account page, so this only covers what the theme has no opinion about —
 * the reCAPTCHA widget and the country select's alignment with it.
 */

.woocommerce-form-register .lafrigg-reg-captcha {
	margin-top: 1.2em;
	margin-bottom: 1.2em;
}

/* The widget is a fixed-width iframe; keep it from overflowing narrow columns. */
.woocommerce-form-register .g-recaptcha {
	display: inline-block;
	max-width: 100%;
	transform-origin: 0 0;
}

@media (max-width: 360px) {
	.woocommerce-form-register .g-recaptcha {
		transform: scale( 0.87 );
	}
}

/* WooCommerce's country dropdown ships unstyled when select2 is absent. */
.woocommerce-form-register .form-row select.country_select {
	width: 100%;
}

/* Match the required marker to the theme's accent rather than hard-coding red. */
.woocommerce-form-register .required {
	text-decoration: none;
	border: 0;
}

/* Validation errors read as a block, not a bare list. */
.woocommerce-form-register + .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-error {
	margin-bottom: 1.5em;
}
