.ai-form-wrapper {
	max-width: 640px;
	margin: 0 auto;
}

.ai-inscription-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ai-form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ai-form-row label {
	font-weight: 600;
}

.ai-form-row input[type="text"],
.ai-form-row input[type="email"],
.ai-form-row input[type="tel"],
.ai-form-row input[type="date"],
.ai-form-row input[type="file"],
.ai-form-row select,
.ai-form-row textarea {
	padding: 8px 10px;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	font-size: 15px;
	width: 100%;
	box-sizing: border-box;
}

.ai-form-row-checkbox label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400;
}

.ai-submit-btn {
	align-self: flex-start;
	background: #2271b1;
	color: #fff;
	border: none;
	padding: 10px 24px;
	border-radius: 4px;
	font-size: 15px;
	cursor: pointer;
}

.ai-submit-btn:hover {
	background: #135e96;
}

.ai-notice {
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
}

.ai-notice-success {
	background: #edfaef;
	border: 1px solid #46b450;
	color: #1a4d1a;
}

.ai-notice-error {
	background: #fbeaea;
	border: 1px solid #dc3232;
	color: #6b1414;
}

/* Champ piège anti-spam : invisible pour les humains, visible pour les robots simples */
.ai-hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
	height: 0;
	width: 0;
	overflow: hidden;
}
