.tsf-form-wrap {
	max-width: 780px;
	color: #1f2937;
	font: inherit;
}

.tsf-intro {
	margin: 0 0 1.5rem;
}

.tsf-report-form,
.tsf-report-form * {
	box-sizing: border-box;
}

.tsf-field,
.tsf-fieldset,
.tsf-consent {
	margin: 0 0 1.25rem;
}

.tsf-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.tsf-field label,
.tsf-fieldset legend {
	display: block;
	margin: 0 0 .45rem;
	font-weight: 650;
}

.tsf-field label > span[aria-hidden="true"],
.tsf-consent span[aria-hidden="true"],
.tsf-required-note span {
	color: #b42318;
}

.tsf-field input[type="text"],
.tsf-field input[type="email"],
.tsf-field input[type="tel"],
.tsf-field input[type="file"],
.tsf-field textarea {
	display: block;
	width: 100%;
	padding: .72rem .8rem;
	border: 1px solid #9ca3af;
	border-radius: 4px;
	background: #fff;
	color: #111827;
	font: inherit;
}

.tsf-field input:focus,
.tsf-field textarea:focus,
.tsf-options input:focus,
.tsf-consent input:focus {
	outline: 3px solid rgba(21, 89, 166, .22);
	outline-offset: 1px;
	border-color: #1559a6;
}

.tsf-field textarea {
	min-height: 150px;
	resize: vertical;
}

.tsf-fieldset {
	padding: 0;
	border: 0;
}

.tsf-options {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem 1.1rem;
}

.tsf-options label,
.tsf-consent label {
	display: inline-flex;
	align-items: flex-start;
	gap: .48rem;
	cursor: pointer;
}

.tsf-options input,
.tsf-consent input {
	width: 1.1rem;
	height: 1.1rem;
	margin: .15rem 0 0;
	accent-color: #1559a6;
	flex: 0 0 auto;
}

.tsf-optional,
.tsf-help,
.tsf-required-note,
.tsf-file-list {
	color: #5b6472;
	font-size: .92em;
}

.tsf-help,
.tsf-required-note {
	margin: .45rem 0 0;
}

.tsf-file-list ul {
	margin: .5rem 0 0 1.2rem;
}

.tsf-alert {
	margin: 0 0 1.25rem;
	padding: .9rem 1rem;
	border: 1px solid;
	border-radius: 4px;
}

.tsf-alert ul {
	margin: .55rem 0 0 1.2rem;
}

.tsf-alert--success {
	border-color: #77a98a;
	background: #eef8f1;
	color: #184d2b;
}

.tsf-alert--error {
	border-color: #d58a82;
	background: #fff1f0;
	color: #7a271a;
}

.tsf-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: .72rem 1.25rem;
	border: 0;
	border-radius: 4px;
	background: #1559a6;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.tsf-submit:hover {
	background: #0d447f;
}

.tsf-submit:focus {
	outline: 3px solid rgba(21, 89, 166, .3);
	outline-offset: 2px;
}

.tsf-submit:disabled {
	opacity: .66;
	cursor: wait;
}

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

@media (max-width: 640px) {
	.tsf-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.tsf-options {
		flex-direction: column;
	}

	.tsf-submit {
		width: 100%;
	}
}

