.formulaire_container {
	max-width: 600px;
	margin: 0 auto;
	background: #FFFFFF;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

input,
select {
	display: block;
	width: 100%;
	margin-bottom: 1.2rem;
	padding: 0.8rem;
	border: 1px solid #DCDFE6;
	border-radius: 6px;
	box-sizing: border-box; /* Important pour que le padding ne casse pas la largeur */
	transition: border-color 0.2s;
	font-size: 14px;
}

input:focus,
select:focus {
	outline: none;
	border-color: #007BFF;
	box-shadow: 0 0 0 3px rgba(0,123,255,0.1); /* Effet de halo au focus */
}

button {
	width: 100%;
	padding: 0.8rem;
	background: #F26522;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: background 0.3s, transform 0.1s;
}

button:hover {
	background: #D84500; /* Bleu plus foncé au survol */
}

button:active {
	transform: scale(0.98); /* Petit effet d'enfoncement au clic */
}

/* Style en cas d'erreur */
.champ_error {
	border: 2px solid #FF0000;
}

.input_inactif {
	opacity: 0.3;
}

/*****************************
******Champ de recherche******
*****************************/
	.search-wrapper {
		position: relative;
		display: flex;
	}

	.search-icon {
		position: absolute;
		left: 5px;
		top: 3px;
		font-size: 35px;
		color: #666666;
		pointer-events: none; /* L'icône ne bloque pas le clic sur l'input */
	}

	.champ_recherche {
		padding: 10px 10px 10px 40px; /* 40px à gauche pour laisser la place à l'icône */
		border-radius: 8px;
		font-size: 16px;
		outline: none;
		transition: border-color 0.3s;
	}

	.champ_recherche:focus {
		border-color: #007BFF; /* Couleur d'accentuation au focus */
	}
/*****************************
******************************
*****************************/