/*
 * Ultra Addons for WPForms - Form Styling : frontend base.
 *
 * Only minimal, safe smoothing rules live here. All per-form styling is
 * injected inline (scoped to #wpforms-{id}) by the render engine so it stays
 * isolated and easy to override.
 */

.wpforms-container[id^="wpforms-"] {
	transition: box-shadow 0.2s ease;
}

.wpforms-container[id^="wpforms-"] .wpforms-submit {
	cursor: pointer;
}

/* Ensure inputs respect the container box model when padded/rounded. */
.wpforms-container[id^="wpforms-"] .wpforms-field input,
.wpforms-container[id^="wpforms-"] .wpforms-field textarea,
.wpforms-container[id^="wpforms-"] .wpforms-field select {
	box-sizing: border-box;
}
