# convertkit/3.4.4/resources/frontend/scss/_form-builder.scss

Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages, version 3.4.4. 54 lines.

- Page: https://pluginprobe.com/plugins/convertkit/3.4.4/code/resources/frontend/scss/_form-builder.scss
- Raw: https://pluginprobe.com/plugins/convertkit/3.4.4/raw/resources/frontend/scss/_form-builder.scss
- Modified: 2026-09-23T09:24:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/convertkit/3.4.4/code/resources/frontend/scss/_form-builder.scss#L10-L20`.

```scss
/**
 * Define some sensible default styles for the form elements,
 * in case a theme doesn't define them.
 */
.wp-block-convertkit-form-builder-field {

	input,
	textarea {
		width: 100%;
		margin: 0 0 20px 0;
		padding: 10px;
		box-sizing: border-box;
		font-family: inherit;

		/* Leave room above the field when it's focused and scrolled to on error. */
		scroll-margin-top: 30px;
	}

	label {

		span.convertkit-form-builder-field-required {
			color: #f00;
		}
	}
}

form {

	.convertkit-form-builder-subscribed-message {
		width: 100%;
		margin: 0 0 20px 0;
		box-sizing: border-box;
	}

	.convertkit-form-builder-notice {
		display: inline-block;
		width: 100%;
		scroll-margin-top: 30px;
		margin: 0 0 20px 0;
		padding: 0 0 0 30px;
		box-sizing: border-box;
		font-size: 12px;
		line-height: 24px;
		font-weight: 400;
		background-repeat: no-repeat;
		background-size: 24px 24px;

		&.convertkit-form-builder-notice-error {
			color: #d3434a;
			background-image: url(../images/error.svg);
		}
	}
}

```
