/* FORMULAIRE CONTACT */
body{
	color: white;
}
.main{
	display: flex;
	justify-content: center;
	margin: 15px;
}
.main h1,
.main h2{
	margin: 10px;
	text-decoration: underline;
	text-align: center;
	color: #38bdf8;
}
.section-contact{
	background: #1e293b;
	border: 1px solid #2d4258;
	margin: 15px;
	width: 400px;
}
.container-contact{
	display: flex;
	align-items: center;
	flex-direction: column;
}
.container-contact div label{
	display: block;
	margin: 10px;
}
.container-contact div input{
	display: block;
	margin: 10px;
	width: 300px;
}
.commentaire label{
	display: block;
	margin: 10px;
	margin-top: 0;
}
.commentaire textarea{
	display: block;
	margin: 10px;
	width: 300px;
	height: 200px;
}
.button-contact{
	display: flex;
	justify-content: center;
	margin: 10px;
}
.button-contact button{
	margin: 10px;
	padding: 10px;
	border-radius: 25px;
	font-weight: 600;
	width: 100px;
}
.button-contact button:hover{
	background: RGBa(0, 171, 240, 0.20);
	color: white;
	font-weight: 600;
}
.section-contact .radio{
	display: flex;
}
.section-contact .radio input{
	margin: 10px;
	width: 50px;
}
.section-contact .radio label{
	margin: 10px;
}