.fcs-form-wrap {
	--fcs-green: #2fa541;
	--fcs-ink: #20363b;
	--fcs-border: #c9c9c9;
	--fcs-muted: #767676;
	--fcs-error: #b42318;
	--fcs-success-bg: #edf8ef;
	--fcs-error-bg: #fff1f0;
	box-sizing: border-box;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 48px 24px;
	color: #303030;
	font-family: inherit;
}

.fcs-form-wrap *,
.fcs-form-wrap *::before,
.fcs-form-wrap *::after {
	box-sizing: border-box;
}

.fcs-heading {
	max-width: 720px;
	margin: 0 auto 72px;
	color: var(--fcs-green);
	font-family: inherit;
	font-size: clamp(28px, 4vw, 38px);
	font-style: italic;
	font-weight: 800;
	line-height: 1.08;
	text-align: center;
	text-transform: uppercase;
}

.fcs-form {
	width: 100%;
	max-width: 652px;
	margin: 0 auto;
}

.fcs-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.fcs-field {
	margin: 0 0 20px;
}

.fcs-field input,
.fcs-field textarea {
	display: block;
	width: 100%;
	margin: 0;
	border: 1px solid var(--fcs-border);
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	color: #303030;
	font: inherit;
	font-size: 17px;
	line-height: 1.4;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.fcs-field input {
	height: 39px;
	padding: 7px 11px;
}

.fcs-field textarea {
	min-height: 220px;
	padding: 7px 11px;
	resize: vertical;
}

.fcs-field input::placeholder,
.fcs-field textarea::placeholder {
	color: var(--fcs-muted);
	opacity: 1;
}

.fcs-field input:focus,
.fcs-field textarea:focus {
	outline: 0;
	border-color: var(--fcs-green);
	box-shadow: 0 0 0 3px rgb(47 165 65 / 16%);
}

.fcs-field.has-error input,
.fcs-field.has-error textarea,
.fcs-field input[aria-invalid="true"],
.fcs-field textarea[aria-invalid="true"] {
	border-color: var(--fcs-error);
}

.fcs-meta {
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.4;
}

.fcs-counter {
	color: #333;
}

.fcs-error {
	margin: 5px 0 0;
	color: var(--fcs-error);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.fcs-submit {
	margin-top: 22px;
	text-align: center;
}

.fcs-submit button {
	min-width: 110px;
	min-height: 43px;
	margin: 0;
	padding: 10px 25px;
	border: 0;
	border-radius: 0;
	background: var(--fcs-ink);
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color 160ms ease, transform 160ms ease;
}

.fcs-submit button:hover {
	background: #14272b;
}

.fcs-submit button:focus-visible {
	outline: 3px solid rgb(47 165 65 / 35%);
	outline-offset: 3px;
}

.fcs-submit button:active {
	transform: translateY(1px);
}

.fcs-submit button:disabled {
	cursor: wait;
	opacity: .78;
	transform: none;
}

.fcs-alert {
	max-width: 652px;
	margin: 0 auto 28px;
	padding: 17px 20px;
	border-left: 4px solid;
	font-size: 16px;
	line-height: 1.5;
}

.fcs-alert--success {
	border-color: var(--fcs-green);
	background: var(--fcs-success-bg);
	color: #176526;
}

.fcs-alert--error {
	border-color: var(--fcs-error);
	background: var(--fcs-error-bg);
	color: #7a271a;
}

.fcs-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.fcs-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.fcs-admin-notice {
	padding: 12px;
	border-left: 4px solid #dba617;
	background: #fff8e5;
}

@media (max-width: 640px) {
	.fcs-form-wrap {
		padding: 36px 16px;
	}

	.fcs-heading {
		margin-bottom: 44px;
		font-size: clamp(25px, 8vw, 32px);
	}

	.fcs-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.fcs-field textarea {
		min-height: 180px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fcs-form-wrap * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
