input, .submitbtn {
	display: block;
}

/* Flex items ----------------------------- */
form {
	display: flex;
	flex-direction: column;
	align-items: center;
}


/* Typography ---------------------------- */
h1 { font-size: 1.2em; }

input {
	font-size: 120%;
	color: var(--black);
	background: var(--white);
	border: 0.5px solid #DCDCDC;
	border-radius: 5px;
	padding: 5px 5px 5px 30px;
	margin-bottom: 10px;
}

input:focus {
	background: #ffffff;
	border: 1px solid #b1e1e4;
}

/* to edit this when incorporating functionality */
.submitbtn {
	background: var(--green);
	color: var(--white);
	padding-right: 30px;
	padding-left: 30px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 10px;

}

/* end --------------------- */