form {
	margin-top: 70px;
}

form .row > * {
	margin-right: 30px;
}

.form-field {
	position: relative;
	width: 100%;
	height: 50px;
	border-bottom: 2px solid var(--dark-blue);
	margin: 30px 0;
}

#non-req {
	border-bottom: 2px solid var(--rare-blue);
}

.form-field input{
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1em;
	/* color: var(--rare-blue); */
	font-weight: 600;
}


@media (max-width: 720px) {
	form .row {
		display: block;
	}
	form .row > * {
		margin-right: 0;
	}

}