html, body {
	padding: 0;
	margin: 0;
}
:root {
	--primary: #ff5851;
	--primary-alt: #fff;
	--border-radius: 3px;
	--font: DM Sans, Arial, Sans Serif;
}
body {
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.5;
}
body * {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 2rem 0;
}
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
}
.pitch {
	font-size: 2rem;
}
.pitch p {
	line-height: 2.8rem;
}
.row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.form-group {
	margin: 0 0 2rem 0;
}
.form-label {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	margin: 0 0 1rem 0;
}
.form-control {
	width: 100%;
	height: 55px;
	padding: 1rem;
	font-size: 1rem;
	font-family: var(--font);
	border-radius: var(--border-radius);
	border: 1px solid #000;
}
.checkbox {
	position: relative;
	padding: 0 0 0 2rem;
	display: block;
	cursor: pointer;
	margin: 0 0 1rem 0;
}
.checkbox input {
	position: absolute;
	top: 3px;
	left: 0.5rem;
}
.checkbox__title {
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}
.checkbox__description {
	opacity: 0.6;
	font-size: 0.9rem;
}
.button {
	background: var(--primary);
	color: var(--primary-alt);
	padding: 1rem;
	font-size: 1rem;
	font-weight: 700;
	width: 100%;
	cursor: pointer;
	border: none;
	font-family: var(--font);
	border-radius: var(--border-radius);
}