.fc-wrapper {
	max-width: 680px;
	margin: 0 auto;
}

.fc-title {
	margin-bottom: 1.5rem;
}

.fc-errors {
	background: #fde8f0;
	border-left: 4px solid #D2097A;
	padding: .75rem 1rem .75rem 2rem;
	margin-bottom: 1.5rem;
	border-radius: 4px;
}

.fc-errors li {
	color: #a00055;
}

.fc-success {
	background: #e8f8f0;
	border-left: 4px solid #2d9e5a;
	padding: 1rem 1.25rem;
	border-radius: 4px;
	color: #1a5c35;
}

.fc-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.fc-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 540px) {
	.fc-row { grid-template-columns: 1fr; }
}

.fc-field {
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

.fc-field label,
.fc-legend {
	font-weight: 600;
	font-size: .9rem;
}

.fc-legend {
	margin-bottom: .5rem;
}

.fc-legend--sr {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.fc-field span[aria-hidden],
.fc-check-label span[aria-hidden] {
	color: #D2097A;
}

.fc-field input,
.fc-field select,
.fc-field textarea {
	width: 100%;
	padding: .5rem .75rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	font-family: inherit;
	background: #fff;
	transition: border-color .15s;
}

.fc-field input:focus,
.fc-field select:focus,
.fc-field textarea:focus {
	outline: none;
	border-color: #D2097A;
	box-shadow: 0 0 0 3px rgba(210, 9, 122, .15);
}

.fc-fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

.fc-radios {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
}

.fc-radio-label,
.fc-check-label {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	cursor: pointer;
	font-size: .95rem;
}

.fc-radio-label input,
.fc-check-label input {
	margin-top: .2rem;
	flex-shrink: 0;
	accent-color: #D2097A;
}

.fc-submit {
	align-self: flex-start;
	background: #D2097A;
	color: #fff;
	border: none;
	padding: .65rem 2rem;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s;
}

.fc-submit:hover {
	background: #a8065f;
}
