.ac-form-wrapper {
	max-width: 700px;
	margin: 0 auto;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	padding: 40px;
	box-sizing: border-box;
}

.ac-form .ac-row {
	display: flex;
	gap: 16px;
}

.ac-form .ac-field {
	margin-bottom: 16px;
	flex: 1;
}

.ac-label-title {
	display: block;
	color: #e53935;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 8px;
}

.ac-form input[type="text"],
.ac-form input[type="email"],
.ac-form input[type="number"],
.ac-form select,
.ac-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e2e2e2;
	border-radius: 999px;
	padding: 14px 20px;
	font-size: 15px;
	color: #333;
	background: #fff;
	font-family: inherit;
}

.ac-form textarea {
	border-radius: 20px;
	resize: vertical;
	min-height: 140px;
}

.ac-form select {
	appearance: none;
	-webkit-appearance: none;
}

.ac-form input:focus,
.ac-form select:focus,
.ac-form textarea:focus {
	outline: none;
	border-color: #e53935;
}

.ac-honeypot {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0;
	overflow: hidden;
}

.ac-captcha-field label {
	display: block;
	font-size: 14px;
	color: #555;
	margin-bottom: 6px;
}

.ac-captcha-field input {
	border-radius: 999px;
	max-width: 120px;
}

.ac-bottom-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.ac-file-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f2f2f2;
	color: #666;
	border-radius: 999px;
	padding: 12px 22px;
	cursor: pointer;
	font-size: 14px;
	position: relative;
}

.ac-file-label input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.ac-upload-icon {
	font-weight: bold;
}

.ac-submit-btn {
	background: #e53935;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.ac-submit-btn:hover {
	background: #c62828;
}

.ac-submit-btn.ac-btn-outline {
	background: #fff;
	color: #e53935;
	border: 1px solid #e53935;
}

.ac-submit-btn.ac-btn-outline:hover {
	background: #fdeaea;
}

.ac-type-faq .ac-bottom-row {
	justify-content: flex-end;
}

.ac-agence-label {
	text-align: center;
	font-size: 13px;
	color: #888;
	margin-top: 20px;
}

.ac-notice {
	padding: 14px 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
}

.ac-notice-success {
	background: #e6f4ea;
	color: #1e7e34;
}

.ac-notice-error {
	background: #fdeaea;
	color: #c62828;
}

@media (max-width: 600px) {
	.ac-form .ac-row {
		flex-direction: column;
	}
	.ac-form-wrapper {
		padding: 24px;
	}
}
