/* VivaTech inscription form — charte groupe IEF2I */
.vivatech-form {
	max-width: 480px;
	margin: 0 auto;
	font-family: "Barlow", Arial, Helvetica, sans-serif;
	color: #3F4046;
}
.vivatech-form .vt-field { margin-bottom: 16px; }
.vivatech-form label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
}
.vivatech-form input[type="text"],
.vivatech-form input[type="email"] {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #cfc4b1;
	border-radius: 6px;
	font-size: 15px;
	background: #fff;
}
.vivatech-form input[type="text"]:focus,
.vivatech-form input[type="email"]:focus {
	outline: none;
	border-color: #498C8A;
	box-shadow: 0 0 0 3px rgba(73, 140, 138, .15);
}
/* Honeypot : invisible mais présent dans le DOM */
.vivatech-form .vt-hp {
	position: absolute !important;
	left: -9999px !important;
	height: 0;
	overflow: hidden;
}
.vivatech-form .vt-consent {
	display: flex;
	margin: 12px 0 20px;
	font-size: 13px;
}
.vivatech-form .vt-consent label {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-weight: 400;
}
.vivatech-form .vt-consent input { margin-top: 2px; }
.vivatech-form .vt-submit {
	width: 100%;
	padding: 14px 20px;
	border: 0;
	border-radius: 6px;
	background: #498C8A;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s ease;
}
.vivatech-form .vt-submit:hover { background: #3c7775; }
.vivatech-form .vt-submit:disabled { opacity: .6; cursor: default; }
.vivatech-form .vt-message {
	margin: 16px 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.5;
}
.vivatech-form.vt-ok .vt-message { color: #1a7d4b; font-weight: 600; }
.vivatech-form.vt-wait .vt-message { color: #b07900; font-weight: 600; }
.vivatech-form.vt-error .vt-message { color: #c0392b; font-weight: 600; }
