/**
 * Estilos del frontend (formularios de desistimiento).
 */
.desist-form {
	max-width: 560px;
	margin: 1.5em 0;
}

.desist-form .desist-field {
	margin: 0 0 1em;
}

.desist-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.25em;
}

.desist-form .desist-req {
	color: #c0392b;
}

.desist-form input[type="email"],
.desist-form input[type="text"],
.desist-form textarea {
	width: 100%;
	padding: 0.5em 0.6em;
	box-sizing: border-box;
}

/* Honeypot: oculto fuera de la vista pero accesible para bots. */
.desist-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.desist-legal {
	font-size: 0.85em;
	color: #555;
	background: #f5f8ff;
	border-left: 3px solid #2c6cb0;
	padding: 0.6em 0.8em;
	margin: 1em 0;
}

.desist-submit {
	cursor: pointer;
}

.desist-submit[disabled] {
	opacity: 0.6;
	cursor: default;
}

.desist-message {
	margin-top: 1em;
	padding: 0;
}

.desist-message.is-success,
.desist-message.is-error {
	padding: 0.7em 0.9em;
	border-radius: 4px;
}

.desist-message.is-success {
	background: #e8f6ec;
	border: 1px solid #46b450;
	color: #1e7b34;
}

.desist-message.is-error {
	background: #fbeaea;
	border: 1px solid #dc3232;
	color: #a02020;
}
