/* Contacto Binovo — estilos del formulario */

.cb-contact {
	max-width: 640px;
	margin: 1.5rem 0;
}

.cb-contact__title {
	margin: 0 0 1rem;
}

.cb-form .cb-field {
	margin: 0 0 1rem;
}

.cb-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
}

.cb-form input[type="text"],
.cb-form input[type="email"],
.cb-form textarea {
	width: 100%;
	padding: 0.6rem 0.7rem;
	border: 1px solid #c4c4c4;
	border-radius: 6px;
	font: inherit;
	box-sizing: border-box;
}

.cb-form input:focus,
.cb-form textarea:focus {
	outline: 2px solid #2271b1;
	outline-offset: 1px;
	border-color: #2271b1;
}

.cb-field--check label {
	font-weight: 400;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.cb-field--check input {
	margin-top: 0.2rem;
}

.cb-req {
	color: #d63638;
}

.cb-submit button {
	background: #2271b1;
	color: #fff;
	border: 0;
	padding: 0.7rem 1.5rem;
	border-radius: 6px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.cb-submit button:hover {
	background: #135e96;
}

/* Honeypot: oculto a humanos pero accesible para que los bots lo rellenen. */
.cb-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cb-notice {
	padding: 0.8rem 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	border: 1px solid transparent;
}

.cb-notice--success {
	background: #edfaef;
	border-color: #00a32a;
	color: #0a4b1a;
}

.cb-notice--error {
	background: #fcf0f1;
	border-color: #d63638;
	color: #8a1f21;
}
