form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 0 1.25rem;
	justify-content: center;
}
section label{
	flex-grow: 1;
	flex-basis: calc(50% - 1.25rem / 2);
	display: flex;
	flex-direction: column;
}
input,
textarea {
	height: 3.75rem;
	border-radius: 0.375rem;
	border: 1px solid #e5e5e5;
	padding: 0 1rem;
	font-size: 1rem;
	color: #222;
}
:is(input, textarea)::placeholder {
	color: #ccc;
}
:is(input, textarea):focus {
	border-color: #b81c20;
	box-shadow: 0px 0px 0.9375rem 0px rgba(17, 25, 4, 0.15);
}
input:user-invalid {
	border-color: red;
}
label > span {
	visibility: hidden;
	color: red;
}
input:user-invalid + span {
	visibility: visible !important;
}
textarea {
	width: 100%;
	min-height: 9.375rem;
	padding: 1rem;
}
button {
	max-width: 25rem;
	height: 3.75rem;
	background: #b81c20;
	border-radius: 1.875rem;
	font-size: 1.125rem;
	color: white;
	font-weight: bold;
	width: 100%;
	margin-top: 5rem;
}

.custom-marker {
	width: 13.75rem;
	aspect-ratio: 220/70;
	background: #b81c20;
	border-radius: 2.1875rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 768px) {
	.custom-marker {
		width: 12.5rem;
	}
}
.custom-marker>img {
	display: block;
	width: 70%;
    object-fit: contain;
}
.custom-marker::before {
	content: "";
	--size: 1rem;
	position: absolute;
	border-top: #b81c20 solid var(--size);
	border-left: transparent solid var(--size);
	border-right: transparent solid var(--size);
	border-bottom: transparent solid var(--size);
	bottom: calc(var(--size) * -2 + 6px);
}
