/* Tchat Connexion — deux habillages :
   --home  : champs dans un bloc Elementor sombre (page d’accueil)
   --salon : carte autonome sur fond clair (pages salon)
*/

.tc-form {
	box-sizing: border-box;
	text-align: left;
	font-family: inherit;
	max-width: 100%;
}
.tc-form *,
.tc-form *::before,
.tc-form *::after {
	box-sizing: border-box;
}
.tc-form .tc-erreur {
	background: #c0392b;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border-radius: 6px;
	padding: 8px 10px;
	margin: 0 0 10px;
}
.tc-form .tc-erreur a {
	color: #fff;
	text-decoration: underline;
}
.tc-form .input_text,
.tc-form .select {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 15px;
	line-height: 1.3;
}
.tc-form .tc-genre {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	margin: 4px 0 12px;
}
.tc-form .tc-genre__item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
}
.tc-form .tc-genre__item img {
	display: block;
	flex: none;
}
.tc-form .imput_radio {
	margin: 0;
	accent-color: #1a73e8;
}
.tc-form .input_submit {
	display: block;
	width: 100%;
	margin: 4px 0 8px;
	padding: 12px 14px;
	border-radius: 8px;
	border: 0;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.03em;
	cursor: pointer;
	text-transform: uppercase;
}
.tc-form .tc-note {
	margin: 6px 0 0;
	font-size: 13px;
	text-align: left;
}
.tc-form .tc-note a {
	text-decoration: none;
}
.tc-form .tc-note a:hover {
	text-decoration: underline;
}

/* Accueil : le fond sombre vient d’Elementor — champs blancs, texte clair */
.tc-form--home {
	color: #fff;
}
.tc-form--home .input_text,
.tc-form--home .select {
	background: #fff;
	color: #1a2740;
	border: 0;
}
.tc-form--home .input_submit {
	background: #1a73e8;
	color: #fff;
}
.tc-form--home .input_submit:hover {
	background: #1558c0;
}
.tc-form--home .tc-genre__item,
.tc-form--home .tc-note,
.tc-form--home .tc-note a {
	color: #fff;
}

/* Pages salon : carte claire, encadrée */
.tc-form--salon {
	color: #1a2740;
	background: #fff;
	border: 1px solid #8ec8ea;
	border-radius: 12px;
	padding: 18px 16px 14px;
	box-shadow: 0 4px 18px rgba(26, 82, 180, 0.08);
}
.tc-form--salon .input_text,
.tc-form--salon .select {
	background: #fff;
	color: #1a2740;
	border: 1px solid #8ec8ea;
}
.tc-form--salon .input_text:focus,
.tc-form--salon .select:focus {
	outline: none;
	border-color: #1a73e8;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}
.tc-form--salon .tc-genre__item {
	color: #1a2740;
}
.tc-form--salon .input_submit {
	background: #1a73e8;
	color: #fff;
	border-radius: 10px;
}
.tc-form--salon .input_submit:hover {
	background: #0d5bd7;
}
.tc-form--salon .tc-note a {
	color: #5a6b85;
}