/* Styles du formulaire de contact */
.contact-form-wrap {
	max-width: 640px;
	margin: 0 auto;
}
.contact-form-wrap label {
	font-weight: 700;
	margin-top: 12px;
	display: block;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 4px;
}
.contact-form-wrap .hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
}
.contact-form-wrap .btn-envoyer {
	margin-top: 18px;
}
.alert-success {
	background: #dff0d8;
	color: #3c763d;
	border: 1px solid #d6e9c6;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 15px;
}
.alert-error {
	background: #f2dede;
	color: #a94442;
	border: 1px solid #ebccd1;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 15px;
}
