.error {
	color: red;
	font-weight: 500;
	margin-left: 12px;
}

.success {
	color:orange;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
}

.failure {
	color: red;
	text-align: center;
	font-weight: 800;
	font-size: 16px;
}

.container #contact {
	max-width:400px;
	width:100%;
	margin:0 auto;
	position:relative;
}

#contact {
	background:#000033;
	padding:25px;
	margin: 0px;
}

#contact h3 {
	color: white;
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 15px;
}

input, textarea {
	width:100%;
	border:1px solid #CCC;
	margin-bottom: 10px;
	padding: 10px;
}

input:hover, textarea:hover {
	background-color: lightgoldenrodyellow;
}

textarea {
	height:100px;
	max-width:100%;
  	resize:none;
}

.fileInput {
	background-color: #08C;
}

button {
	cursor:pointer;
	width:100%;
	border:none;
	background-color: orange;
	color: black;
	margin:10px 0 5px 0;
	padding:10px;
	font-size:17px;
	font-weight: 500;
}

button:hover {
	background-color: #08C;
	color: white;
	transition:background-color 0.3s ease-in-out;
}

button:active {box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5);}

input:focus, textarea:focus {
	border:1px solid #999;
}