/**
 * Styles frontend pour le formulaire d'inscription
 */
.ene-subscription-form {
	max-width: 500px;
	margin: 2rem 0.5rem;
	padding: 2rem;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.ene-subscription-form h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.ene-subscription-form p {
	margin-bottom: 1.5rem;
	color: #666;
}

.ene-form-field {
	margin-bottom: 1.5rem;
}

.ene-form-field label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.ene-form-field input[type="email"] {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	box-sizing: border-box;
}

.ene-form-field input[type="email"]:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.ene-hcaptcha {
	margin-bottom: 1.5rem;
}

.ene-submit-button {
	background: #0073aa;
	color: #fff;
	border: none;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s;
}

.ene-submit-button:hover {
	background: #005a87;
}

.ene-submit-button:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.ene-form-message {
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: 4px;
	display: none;
}

.ene-form-message.ene-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block;
}

.ene-form-message.ene-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	display: block;
}
