@font-face {
  font-family: "Adamina";
  src: local("Adamina Regular"), local("Adamina-Regular"), url("../fonts/Adamina.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}


body {
	font-size: 1em;
	color: black;
	/*background-color: rgba(3, 128, 3, 0.9);*/
	background-color: white;
	font-family: 'Adamina', verdana;
}


a, a:visited {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.fermer {
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 5px 8px;
	color: white;
	background-color: red;
	cursor: pointer;
}


.none {
	display: none;
}


.obligatoire {
	color: red;
	font-size: 1em;
}









/******************** Gestion des formulaires *****************/

.form {
	width: 60%;
	min-width: 250px;
	margin: 40px auto;
	font-size: 0.8em;
}

@media all and (max-width: 700px) {
	.form {
		width: 100%;
	}
}

.form .champ {
	margin: 20px 0px;
	text-align: left;
}

.form .bouton {
	text-align: right;
}


.form fieldset {
	margin: 20px 0px;
	border: 2px solid rgba(3, 128, 3, 0.6);
}


.form fieldset legend {
	color: rgba(3, 128, 3, 1);
	font-weight: bold;
}


.form label {
	font-weight: bold;
}


.form input[type="text"],
.form input[type="password"],
.form input[type="date"],
.form input[type="tel"],
.form input[type="number"],
.form input[type="file"],
.form input[type="email"],
.form input[type="time"] {
	position: relative;
	top: 5px;
	width: 99%;
	height: 25px;
	padding: 2px 0px 2px 10px;
	border: 1px solid rgba(0, 0, 0, 1);
}


.form select {
	position: relative;
	top: 5px;
	width: 100%;
	height: 40px;
	padding: 2px 0px 2px 10px;
	border: 1px solid rgba(0, 0, 0, 1);
}


.form textarea {
	position: relative;
	top: 5px;
	width: 99%;
	height: 30px;
	padding: 4px 0px 4px 10px;
	border: 1px solid rgba(0, 0, 0, 1);
}


.form .bouton input {
	padding: 15px 20px;
	margin: 0px 2px;
	font-weight: bold;
	color: white;
	background-color: rgba(3, 128, 3, 1);
	border: none;
	cursor: pointer;
}


.form .bouton input:hover {
	background-color: rgba(3, 128, 3, 0.9);
}

/******************** Fin Gestion des formulaires *****************/











