/* CSS Document */

body {
	font-family: Arial, "sans-serif";
	line-height: 1.3;
	background: #000;
}

.logo-principal {
	max-width: 200px;
	width: 40%;
	margin: 40px 20px;
}

.centre {
	text-align: center;
}

.message,
form {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 20px 40px;
  box-sizing: border-box;
  background: #fff;
}

.message {
	text-align: center;
}

label {
  display: block;
  margin-bottom: 10px;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
}

input[type="submit"] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.btn-annulation {
  background-color: #AF4C4C;
  box-sizing: border-box;
  color: white;
  padding: 14px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-size: 13.3333px;
  text-decoration: none !important;
  display: block;	
}

.btn-annulation:hover {
  background-color: #803838;
}

.erreur {
	background: #a22;
	padding: 10px 20px;
	box-sizing: border-box;
	color: #fff;
}

.require {
	color: red !important;
}

.note {
	font-size: 0.8rem;
}