

#proform {
	align-items: flex-end;
}

/* Style du formulaire */
#proform form {
	background-color: white;
	padding: var(--m);
	border-radius: var(--radius-s);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 600px; /* Limite la largeur totale du formulaire */
	width: 90%;
	box-sizing: border-box; /* Inclut le padding et les bordures dans la largeur totale */
}

/* Champs de formulaire : texte, email, téléphone, sélection, et textarea */
#proform input[type="text"],
#proform input[type="email"],
#proform input[type="tel"],
#proform select,
#proform textarea {
	width: 100%;
	max-width: 100%; /* Empêche les champs de dépasser la largeur du formulaire */
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	background-color: #f9f9fb;
	transition: border-color 0.3s ease;
	box-sizing: border-box; /* Gère le padding et les bordures dans la largeur */
	margin-bottom: 14px;
}


/* Style du focus sur les champs */
#proform input:focus,
#proform textarea:focus,
#proform select:focus {
	border-color: #007BFF;
	outline: none;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Textarea spécifique */
#proform textarea {
	resize: vertical;
	min-height: 120px;
}

/* Style des labels */
#proform label {
	display: block;
	font-weight: 500;
	margin-bottom: 7px;
	color: #333;
	font-size: 13px;
}

/* Bouton d'envoi */
#proform button {
	width: 100%;
	padding: 15px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-transform: uppercase;
	
	
	background: linear-gradient(to right, var(--cta-gradient-start), var(--cta-gradient-end)) border-box;
	  padding: 10px 20px;
	  color:white;
	  border-radius: var(--radius-s);
	  font-weight: 500;
	  font-size: var(--fs-s);
	  margin : calc(var(--m)/2) 0;
	  transition: all linear 200ms;
}

#proform button:hover {
	background-color: #0056b3;
}

/* Groupe de case à cocher avec label */
#proform .checkbox-group {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

#proform .checkbox-group input[type="checkbox"] {
	margin-right: 10px;
}

#proform .checkbox-group label {
	margin: 0;
	color: #333;
	font-size: var(--fs-xs);
}

#proform .checkbox-group a {
	color: #007BFF;
	text-decoration: none;
}

#proform .checkbox-group a:hover {
	text-decoration: underline;
}


.g-recaptcha {
	margin : var(--m) 0;
}


/* Responsivité pour les écrans plus petits */
@media screen and (max-width: 1000px) {
	#proform form {
		padding: 30px;
		width: 100%;
	}

	#proform button {
		font-size: 16px;
	}
	
	#proform {
	align-items: flex-start;
}