.talents-form-wrapper {
	margin: 1.5rem 0;
}

.talents-form-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.talents-form-field {
	min-width: 0;
}

.talents-form-field--full {
	flex: 1 1 100%;
}

.talents-form-field--half {
	flex: 1 1 calc(50% - 0.5rem);
	min-width: 240px;
}

.talents-form-label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
}

.talents-form-input,
.talents-form-textarea {
	width: 100%;
}

.talents-form-textarea {
	min-height: 140px;
}

.talents-form-help {
	margin: 0.35rem 0 0;
	font-size: 0.875rem;
	opacity: 0.8;
}

.talents-form-error {
	margin: 0.35rem 0 0;
	color: #b91c1c;
	font-size: 0.875rem;
}

.talents-form-notice {
	margin-bottom: 1rem;
	padding: 0.875rem 1rem;
	border-radius: 6px;
}

.talents-form-notice--success {
	background: #ecfdf5;
	color: #166534;
}

.talents-form-notice--error {
	background: #fef2f2;
	color: #991b1b;
}

.talents-form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.talents-form-actions {
	margin: 1rem 0 0;
}

.talents-form-required {
	color: #b91c1c;
}

@media (max-width: 640px) {
	.talents-form-field--half {
		flex-basis: 100%;
	}
}
