#form {
	width: 80%;
	max-width: 40em;
	min-width: 280px;
	margin: auto;
}

#submit {
	width: 20%;
	padding-left: 0;
	padding-right: 0;
	font-size: 1em;
	border: none;
	-webkit-appearance: none;
}

input[type="email"] {
	height: 2em;
	font-size: 1.2em;
	border: 2px white solid;
	border-radius: 4px;
	background-color: white;

	width: 60%;
	min-width: 16em;
	text-align: center;

	transition: all 0.5s;
	margin-right: 0.3em;
}

@media screen and (max-width:800px) {
	#form {
		font-size: 0.7em;
	}
	#submit {
		font-size: 0.8em;
	}
}

input:focus {
	border-color: rgba(59, 154, 247, 0.8);
}

#message {
	font-weight: bold;
}