#formulaire {
	padding-bottom: 3em;
}

#confirmation {
	display: flex;
	flex-direction: column;
	text-align: center;
}

#confirmation .retour {
	display: block;
	margin: 2em auto;
	background-color: #58ac32;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	padding: 0.5em 1.4em;
    border-radius: 14px;
    border: 1px solid #58ac32;
    font-size: 1em;
    -webkit-appearance: none;
}

#contactForm .error {
	background-color: red;
    color: white;
    text-align: center;
    margin-bottom: 2em;
    font-size: 1.2em;
    line-height: 2.5em;
    border-radius: 6px;
}

#contactForm .field {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#contactForm .erreur {
	display: flex;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-bottom: 1.5em;
    background-color: red;
    padding: 0.5em 0;
    border-radius: 6px;
}

#contactForm .field input {
	border: 2px solid #58ac32;
    border-radius: 8px;
    padding-left: 1em;
    flex-basis: 100%;
    line-height: 3em;
    margin-bottom: 1em;
    outline: none;
    -webkit-appearance: none;
}

@media (min-width: 48em){
	#contactForm .field input {
		flex-basis: 48%;
	}

	#contactForm .objet input {
		flex-basis: 100%;
	}
}

#contactForm .field textarea {
	border: 2px solid #58ac32;
    border-radius: 8px;
    padding: 1em;
    height: 12vh;
    flex-basis: 100%;
    margin-bottom: 1em;
    resize: none;
    outline: none;
    -webkit-appearance: none;
}

#contactForm input[type="submit"] {
	display: block;
	margin: 2em auto;
	background-color: #58ac32;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	padding: 0.5em 1.4em;
    border-radius: 14px;
    border: 1px solid #58ac32;
    font-size: 1em;
    -webkit-appearance: none;
}