/**
 * Styles pour le formulaire de paiement notarial
 */

 .np-form-container {
	max-width: 600px;
	margin: 2rem auto;
	padding: 2rem;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.np-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.np-form-row {
		grid-template-columns: 1fr;
	}
}

.np-form-field {
	margin-bottom: 1rem;
}

.np-form-field label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}

.np-form-field input,
.np-form-field select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.np-form-field input:focus,
.np-form-field select:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.np-form-field input[readonly] {
	background-color: #f0f0f0;
	cursor: not-allowed;
}

.np-form-submit {
	margin-top: 2rem;
}

.np-submit-button {
	width: 100%;
	padding: 1rem;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
}

.np-submit-button:hover {
	background: #005a87;
}

.np-success {
	padding: 1.5rem;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 4px;
	color: #155724;
	margin-bottom: 2rem;
}

.np-success a.np-pay-button {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.75rem 2rem;
	background: #28a745;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.3s;
}

.np-success a.np-pay-button:hover {
	background: #218838;
}

.np-error {
	padding: 1.5rem;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	color: #721c24;
	margin-bottom: 2rem;
}

