p.form-error {
	color: red;
	text-align: left;
	display: none;
}

select.form-text {
    font-size: 21pt;
	font-family: -apple-system, 'Helvetica', sans-serif;
	font-weight: 300;
}

input.form-text {
	width: 100%;
	border: none;
	border-bottom: 1px solid lightgrey;
	transition: border 0.3s;
	font-size: 16pt;
	font-family: -apple-system, 'Helvetica', sans-serif;
	font-weight: 300;
}

input.form-text:focus {
	border-bottom: 1px solid darkgrey;
	outline: none;
}

input.form-text-half {
	width: 50%;
	border: none;
	border-bottom: 1px solid lightgrey;
	transition: border 0.3s;
	font-size: 16pt;
	font-family: -apple-system, 'Helvetica', sans-serif;
	font-weight: 300;
}

input.form-text-half:focus {
	border-bottom: 1px solid darkgrey;
	outline: none;
}

input.form-small-text {
	width: 60%;
	border: none;
	border-bottom: 1px solid lightgrey;
	transition: border 0.3s;
	font-size: 12pt;
	font-family: -apple-system, 'Helvetica', sans-serif;
	font-weight: 300;
}

input.form-small-text:focus {
	border-bottom: 1px solid darkgrey;
	outline: none;
}

textarea.form-big-text {
	width: 100%;
	height: 100px;
	border: 1px solid lightgrey;
	transition: border 0.3s;
	font-size: 12pt;
	font-family: -apple-system, 'Helvetica', sans-serif;
	font-weight: 300;
}

textarea.form-big-text:focus {
	border: 1px solid darkgrey;
	outline: none;
}

ul.form-checkboxes {
	list-style-type: none;
	font-size: 16pt;
}

ul.form-checkboxes li {
	margin-top: 10px;
}