.mandatory {
	font-weight: bold;
}
input[type=text] {
	border: 2px solid grey;
	border-radius: 5px;
	padding: 4px;
	margin: 4px 0 4px 0;
	width: 90%;
}
input[type=text]:focus {
	border: 2px solid lightblue !important;
}
input[type=email] {
	border: 2px solid grey;
	border-radius: 5px;
	padding: 4px;
	margin: 4px 0 4px 0;
	width: 90%;
}
input[type=email]:focus {
	border: 2px solid lightblue !important;
}
select {
	width: 90%;
	border: 2px solid grey;
	border-radius: 5px;
	padding: 4px;
	margin: 4px 0 4px 0;
}
select:focus {
	border: 2px solid lightblue !important;
}
textarea {
	width: 90%;
	border: 2px solid grey;
	border-radius: 5px;
	padding: 4px;
	margin: 4px 0 4px 0;
}
textarea:focus {
	border: 2px solid lightblue !important;
}
.submit {
	margin: 4px 0 4px 0;
}