/* ---------------- GLOBAL ---------------- */
*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Inter', sans-serif;
	background: #ffffff;
}

/* ---------------- SECTION ---------------- */
.hero-inscription {
	min-height: 100dvh;
	background: linear-gradient(180deg, #ffffff 0%, #ffeaea 90%);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 18px 12px;
}

/* ---------------- WRAPPER ---------------- */
.form-wrapper {
	width: 100%;
	max-width: 380px;
	background: #fff;
	padding: 18px 18px 22px;
	border-radius: 18px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* ---------------- HEADER ---------------- */
.form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 22px;
}

.logo-web {
	display: none;
	height: 22px;
}

.logo-mobile {
	height: 20px;
}

.btn-login {
	background: #e9302a;
	color: #fff;
	padding: 7px 16px;
	border-radius: 18px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

/* ---------------- TITRE ---------------- */
h1 {
	text-align: center;
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 700;
}

/* ---------------- RÉASSURANCE ---------------- */
.reassurance-top {
	font-size: 12px;
	color: #444;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 22px;
}

/* ---------------- FORM ---------------- */
.form-group {
	margin-bottom: 12px;
}

.input {
	width: 100%;
	height: 36px;
	padding: 8px 10px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 13px;
}

.input:focus {
	border-color: #e9302a;
	box-shadow: 0 0 6px rgba(233, 48, 42, .35);
	outline: none;
}

/* ---------------- MICRO COPY ---------------- */
.micro-copy {
	font-size: 12px;
	color: #333;
	text-align: center;
	margin: 10px 0 18px; /* ✅ respiration mobile renforcée */
	line-height: 1.45;
}

/* ---------------- CTA ---------------- */
.btn-primary {
	width: 100%;
	background: #e9302a;
	color: #fff;
	border: none;
	padding: 13px;
	font-size: 15px;
	border-radius: 22px;
	font-weight: 600;
	cursor: pointer;
}

/* ---------------- MESSAGES ---------------- */
.messages {
	font-size: 12px;
	background: #ffe3e3;
	color: #c62828;
	padding: 8px;
	border-radius: 6px;
	margin-top: 8px;
}

/* ---------------- FOOTER ---------------- */
.reassurance-bottom {
	text-align: center;
	font-size: 11px;
	margin-top: 14px;
	font-weight: 600;
	color: #444;
}

/* ---------------- DESKTOP ---------------- */
@media ( min-width : 1024px) {
	.hero-inscription {
		padding-top: 40px;
	}
	.form-wrapper {
		max-width: 520px;
		padding: 34px 40px;
	}
	.logo-web {
		display: block;
		height: 55px;
	}
	.logo-mobile {
		display: none;
	}
	h1 {
		font-size: 28px;
		margin-bottom: 18px;
	}
	.reassurance-top {
		font-size: 15px;
		margin-bottom: 32px;
		line-height: 1.55;
	}
	.input {
		height: 46px;
		font-size: 16px;
		padding: 12px 14px;
	}
	.btn-primary {
		padding: 16px;
		font-size: 18px;
		border-radius: 28px;
	}
	.micro-copy {
		font-size: 14px;
		margin: 12px 0 22px;
	}
	.reassurance-bottom {
		font-size: 14px;
		margin-top: 18px;
	}
}

/* Honeypot */
#form\\:hp {
	display: none !important;
}

/* ===== WhatsApp floating – page inscription ===== */
.whatsapp-fab {
	position: fixed;
	right: 16px;
	bottom: 120px;
	z-index: 1000;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18), 0 1px 3px
		rgba(0, 0, 0, 0.12);
	text-decoration: none;
}

.whatsapp-icon {
	width: 26px;
	height: 26px;
	display: block;
}

/* Très petits mobiles */
@media ( max-width : 360px) {
	.whatsapp-fab {
		bottom: 40px;
		right: 12px;
	}
}

/* Mobiles standards */
@media ( min-width : 361px) and (max-width: 390px) {
	.whatsapp-fab {
		bottom: 170px;
		right: 14px;
	}
}

/* Mobiles larges */
@media ( min-width : 391px) and (max-width: 480px) {
	.whatsapp-fab {
		bottom: 124px;
		right: 16px;
	}
}

/* Tablettes */
@media ( min-width : 481px) and (max-width: 767px) {
	.whatsapp-fab {
		bottom: 74px;
		right: 64px;
	}
}

/* Desktop (inchangé) */
@media ( min-width : 768px) {
	.whatsapp-fab {
		bottom: 50px;
		right: 24px;
	}
}