/** FORMULAIRE **/
#mglForm .monchampspersonnel { display: none; }

FORM#mglForm 
{ margin: 1rem auto; 
	width: 30rem;
	max-width: 100%;
}
#mglForm FIELDSET { margin: 20px 0; }
#mglForm LEGEND 
{	color: #2ebdf3;
  text-align: center; 
}
#mglForm LABEL 
{ display: block;
  font-size: .9rem;
  margin-bottom: 0.3rem;
	text-align: left;
}  
#mglForm INPUT, #mglForm SELECT, #mglForm TEXTAREA
{	display: block;
	background-clip: padding-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	
	width: 100%;
	box-sizing: border-box;
	line-height: 1.5;
	margin-bottom: .6rem; 
	padding: .3rem .75rem;
	border-radius: .25rem;
	border: 1px solid #ced4da;
}

#mglForm INPUT:focus, #mglForm SELECT:focus, #mglForm TEXTAREA:focus 
{ outline-color: #28baf1; }

#mglForm INPUT[type="submit"] 
{ background-color: #0d6efd;
	color: #eff4f7;
	padding: 0.35rem 0.5rem;
}

#mglForm INPUT[type=checkbox], #mglForm INPUT[type=radio] { 
	width: 2rem;
	height: 1rem;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

#mglForm .check { 
	display: flex; 
	overflow:visible; 
	position: relative;
	width: 100%;  
	height: auto; 
}

#mglForm.form-confirmation {
	border-radius: .5rem; 
	padding: .8rem .6rem; 
	text-align: center;
	
	background-color: #0aa911; 
	color: #ccf0cd;
}

#mglForm .champs-invalide
{ border-radius: .5rem;
	margin: -.8rem 0 .8rem;
	padding: .8rem .6rem; 
	text-align: center;
	
	background-color: red;
	color: #eff4f7;
}