label {
	display: inline-block;
	width: 10%;
	position: relative;
	vertical-align: top;
	padding: 1.5em 0;
}

input[type=email],
input[type=password],
textarea {
    width: 80%;
    padding: .5em .75em;
    margin: .5em .75em;
    box-sizing: border-box;

    border: 2px solid lightgrey;
    border-radius: 5px; 

    font-size: 14pt; 
    font-family: var(--sans-serif-head);
}
textarea {
	resize: vertical;  
}

input[type=submit] {
    margin: .5em 6.8em;
	padding: .5em 1.5em;
	font-size: 18px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: none;
	cursor: pointer;
	transition: all .3s;
}
input[type=submit]:hover {
	background-color: var(--highlight-color);
	color: white;
}