.form-body {
	border-radius: 12px;
	border: 1px solid #f3f4f6;
	background-color: #fff;
	box-shadow: 0 1px 2px rgb(0, 0, 0, 0.1);
	font-size: 95%;
}
.form-fields {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.form-field-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: bold;
}
.form-required, .form-optional {
	font-size: 80%;
	color: #fff;
	border-radius: 4px;
	padding: 0.3em 0.4em;
	flex-shrink: 0;
}
.form-required {
	background-color: #d92d20;
}
.form-optional {
	background-color: #95a5a6;
}
.form-control-group {
	background-color: #f8fbff;
	border-radius: 8px;
	padding: 1.2em 1em;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
}
.form-radio-item {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.form-radio {
	inline-size: 1.2em;
	aspect-ratio: 1;
}
fieldset {
	margin: 0;
	border: 0;
	padding: 0;
}
legend {
	padding: 0;
}
textarea {
	field-sizing: content;
	resize: none;
}
.form-input {
	font: inherit;
	color: inherit;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.9em 1em;
	&::placeholder {
		color: #aaa;
	}
	&.-textarea {
		min-block-size: 5lh;
		line-height: 1.6;
	}
	&.-file {
		cursor: pointer;
		color: #64748b;
		padding: 0.6em;
		&::file-selector-button {
			font: inherit;
			font-weight: bold;
			color: #2c3e50;
			border: 0;
			border-radius: 8px;
			padding: 0.7em 1em;
			margin-inline-end: 1.5em;
			background-color: #F1F5F9;
			cursor: pointer;
		}
	}
}
.-file::file-selector-button:hover {
	background-color: #E2E8F0;
}
.cf-turnstile {
	margin-inline: auto;
}
.confirm-button {
	display: block;
	inline-size: 280px;
	margin-inline: auto;
	border-radius: 8px;
	padding-block: 1.1em;
	background-color: #0088cc;
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	transition: background-color 0.2s;
	&:hover {
		background-color: #006699;
	}
}
@media (width < 768px) {
	.form-body {
		padding: 2rem 1rem;
		margin-block-start: 2rem;
	}
	.-file::file-selector-button {
		display: block;
		inline-size: 100%;
		margin: 0;
		margin-block-end: 0.5em;
	}
	.confirm-button {
		margin-block-start: 3rem;
	}
}
@media (width >= 768px) {
	.form-body {
		padding: 2.5rem 2.5rem;
		margin-block-start: 2rem;
	}
	.confirm-button {
		margin-block-start: 3rem;
	}
}