/*
 * Visible "pressed" state for the WooCommerce Login/Register buttons.
 * Darkens and fades the button the instant it's clicked so customers get
 * clear feedback the tap registered -- this is what stops people from
 * tapping Register a second time before the page responds.
 */
.woocommerce-form-register__submit.ljc-is-submitting,
.woocommerce-form-login__submit.ljc-is-submitting {
	filter: brightness(0.75);
	opacity: 0.65;
	cursor: not-allowed;
	transition: filter 0.15s ease, opacity 0.15s ease;
}
