@charset "UTF-8";
/* CSS Document */
.contact {
	text-align: left;
	margin: 5%;
}
.priv {
	font-size: 14px;
}
.message {
	margin-bottom: 2%;
}
h1 {
	font-size: 30px;
	margin: 3%;
}
input[type="text"], input[type="email"] {
	border: 1px solid #ccc;
	width: 300px;
	font-family: sans-serif;
	font-size: 16px;
	margin-bottom: 1%;
}
textarea {
	border: 1px solid #ccc;
	width: 50%;
	height: 160px;
	font-family: sans-serif;
	font-size: 16px;
}
/*
input:required,
input[type="text"]:invalid {
	background: #ffb3b3;
}
input:required,
input[type="email"]:invalid {
	background: #ffb3b3;
}
input:required,
textarea:invalid {
	background: #ffb3b3;
}
input[type="text"]:valid,
input[type="email"]:valid,
textarea:valid {
	background: transparent;
}
*/
input[type="checkbox"]:valid {
	background: transparent;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	background: #faf4e2;
}
input[type="submit"] {
	padding: 6px 20px;
	border: 4px solid #ffd386;
	border-radius: 10px;
	background: #ff753e;
	font-size: 20px;
	color: #ffffff;
	margin: 2%;
}
input[type="submit"]:hover {
	background: #ffd386;
}

