


[type=submit],
[type=button] {
	font-weight: bold;
	background-color: #dddddd;
	font-size: 105%;
    color: #666666;
	padding: 10px;
	margin: 0;
	cursor: pointer;
    border-radius: 0%;
    border: none;
}

[type=submit]:hover,
[type=button]:hover {
    font-weight: bold;
	background-color: #930000;
	color: #eeeeee;
}


[type=checkbox],
[type=radio] {
	opacity: 0;
 	width: 0;
 	height: 0;
}

[type=checkbox] + span:first-of-type,
[type=radio] + span:first-of-type {
	display: inline-block;
	background-color: #bbbbbb;
	vertical-align: middle;
	border-radius: 50%;
	width: 19px;
	height: 19px;
    margin-right: 10px;
}

[type=checkbox] + span:first-of-type {
	border-radius: 0%;
}


[type=checkbox]:checked + span:first-of-type,
[type=radio]:checked + span:first-of-type {
	background-color: #930000;
}

[type=checkbox] + span:first-of-type,
[type=checkbox]:checked + span:first-of-type,
[type=radio] + span,
[type=radio]:checked + span {
	transition: background-color 0.2s linear;
}


textarea,
[type=number],
[type=text],
[type=email],
[type=password] {
    border: none;
    border-bottom: 3px solid #999999;
    font-size: 100%;
}

textarea {
    border: 1px solid #999999;
    border-bottom: 3px solid #999999;
}

textarea::placeholder,
[type=text]::placeholder,
[type=email]::placeholder,
[type=password]::placeholder {
    font-style: italic;
}

textarea:focus,
[type=number]:focus,
[type=text]:focus,
[type=email]:focus,
[type=password]:focus {
    outline: none;
}

textarea.requis.vide,
[type=text].requis.vide,
[type=email].requis.vide {
	background: url("/images/icones/asterix.png");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: right;
}

textarea.requis.submit,
[type=text].requis.submit,
[type=email].requis.submit,
[type=password].requis.submit {
	background-color: #feeeee;
}

[type=password] {
    background: url("/images/icones/pass_visible.svg");
    background-repeat: no-repeat;
	background-size: 25px;
	background-position: right;
}

[type=text].pass_visible {
    background: url("/images/icones/pass_invisible.svg");
    background-repeat: no-repeat;
    background-size: 25px;
	background-position: right;
}

[type=number] {
	text-align: right;
}

textarea.requis.vide {
	background-position: 98% 10%;
}

select {
	display: inline-block;
	padding: 6px;
	border: 2px solid #dddddd;
	border-radius: 6px;
	background-color: #eeeeee;
	transition: border 0.5s;
	margin: 0;
}
