/*------------------------- FORM LEADS  ---------------------*/
form.leads {
	position: relative;
}
form.leads fieldset {
	border: 0;
	margin: 0;
	padding: 0 0 1.5vw 0;
}

form.leads input[type=email] {
	background: #fff;
	color: #000;
	border-radius: 25px;
	padding: 0 25px;
	line-height:50px;
	border: 0;
	width: 100%;
	outline: none;
	border: 1px solid #fff;
}
form.leads input[type=submit] {
	display: inline-block;
	position: absolute;
	right: 6px;
	top: 6px;
	background: #000;
	color: #fff;
	border-radius: 20px;
	padding: 0 20px;
	line-height:40px;
	border: 0;
	font-size: .8rem;
	text-transform: uppercase;
	width:auto;
	transition: opacity .25s ease-in-out 0s;
}
form.leads input[type=submit]:disabled {
	opacity: .1;
}
form.leads input[type=submit].active {
	opacity: 1;
}
form.leads input[type=submit]:active {
	background: var(--jaune);
}
form.leads input[type=email]:focus {
	border: 1px solid #000;
}
form.leads .msg div {
	font-size:.85em;
	padding: 10px 0;
}
form.leads .msg.error, form.leads .msg div.notification-error {
	color: #CC0000;
}
form.leads .msg.success, form.leads .msg div.notification-success {
	color: #009900;
}
