/**
 * Styles du formulaire de candidature
 */

.nm-benevole-form {
	max-width: 400px;
	padding: 24px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.1 );
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.nm-form-group {
	margin-bottom: 16px;
}

.nm-form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: 6px;
	font-size: 14px;
	color: #333;
}

.nm-form-group input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.nm-form-group input:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 3px rgba( 0, 115, 170, 0.15 );
}

.nm-required {
	color: #dc3545;
	font-weight: 600;
}

.nm-button-primary {
	width: 100%;
	padding: 14px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.nm-button-primary:hover {
	background: #005a87;
}

.nm-button-primary:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.nm-form-success {
	display: none;
	background: #d4edda;
	color: #155724;
	padding: 12px;
	border-radius: 6px;
	margin-bottom: 16px;
	border: 1px solid #c3e6cb;
}

.nm-form-error {
	display: none;
	background: #f8d7da;
	color: #721c24;
	padding: 12px;
	border-radius: 6px;
	margin-bottom: 16px;
	border: 1px solid #f5c6cb;
}

.nm-form-instructions {
	font-size: 12px;
	color: #666;
	margin-top: 12px;
}

.nm-visible {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}
