/*	************** */
/*  CSS formulaire */
/*	************** */

form 
{
	margin: 10px;
}

.form_tag
{
	margin: 5px;
	padding: 5px;
}

.form-label 
{
	min-height: 10px ;
	margin: 2px;
	padding: 5px;
	text-align: left ;
	font-weight: bold;
	color: #03669F ;
}

.form-input-error
{
	background: lightpink ;
}

.form-aide 
{
	display: inherit ;
	text-align: left;
	font-size: small;
	margin: 5px;
	margin-left: 50px;
	font-style: italic;
}

.form-choix 
{
	display: inline-block;
	min-width: 20px;
	padding:2px;
}

.form-option-actif
{
	color:  #03669F;
}

.form-option-optgroup 
{
	background-color:  orange;
}

:checked + .form-choix 
{
	padding: 3px;
	border-bottom: 5px solid #03669F;
}

input, 
textarea 
{
	display: inherit ;
	margin-left: 50px;
	padding: 5px;
	border:none;
	border-bottom: 1px solid #03669F ;
}

select
{
	min-width: 100px;
	padding:10px;
}


option,
textarea ,
input[type=text],
input[type=password],
input[type=email],
input[type=url] ,
input[type=search]
{
	width: 390px;
	padding:10px;
}

input[type=file] 
{
	border: none;
	border-bottom: 1px solid #999 ;
}

textarea 
{
	margin-top: 5px;
	margin-bottom: 15px;
	resize  : vertical;
	vertical-align: top;
}

::placeholder 
{
	color:rgba(121,135,157,.8) ;
}

input:focus, 
textarea:focus 
{
	border-color:  #03669F ; 
	background   : rgba(0,0,0,.1);
	border-radius: 5px;
}

input + span 
{
	padding-right: 20px;
}

#otherValue
{
	display: none;
}

#other:checked ~ #otherValue
{
	display: inline-block;
}

input[type=checkbox]  
{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 10%;
	width: 16px;
	height: 16px;
	border: 2px solid #999;
	transition: 0.2s all linear;
	margin-right: 5px;
	position: relative;
	top: 4px;
	display: inline-block ;
	margin: unset;
}

input[type=radio] 
{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	border: 2px solid #999;
	transition: 0.2s all linear;
	margin-right: 5px;
	position: relative;
	top: 4px;
	display: inline-block ;
	margin: unset;
	padding: 2px;
}

input[type=radio]:checked ,
input[type=checkbox]:checked 
{
	width: 20px;
	height: 20px;
	border: 6px solid  #03669F ;
}

button
{
   color : #000000 ;
   background-color:transparent ;
   border-style : none none solid none ;
   border-radius: 0px;
   border-color : #03669F ;
   border-width : 2px ;
   font-size: 15px; 
}

button:hover
{
	font-weight: 700;
	border-bottom: 1px solid #03669F ;
	color: #03669F;
}

form button, 
.content-item form button 
{
   	border: 0;
	margin:5px ;
	padding: 8px;
	border-radius:20px 0px ;
    background-color: transparent;
    border-bottom: 2px solid #03669F ;
    cursor: pointer;
    color: #351111;
}
