/* payment.css — formulaire de paiement écologique */

.payment {
  max-width: 420px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #dce5dd;
  border-radius: 12px;
  font-family: system-ui, sans-serif;
}

.payment p {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2e7d32; /* vert accent */
}

.payment input {
  margin-top: .35rem;
  padding: .6rem .8rem;
  border: 1px solid #dce5dd;
  border-radius: 8px;
  font-size: 1rem;
  color: #1b1b1b;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.payment input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
}

/* Bouton payer */
.payment button {
  margin-top: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #2e7d32;
  color: #fff;
  transition: background .2s ease, opacity .2s ease;
}

.payment button:hover:not(:disabled) {
  background: #4caf50;
}

.payment button:disabled {
  background: #dce5dd;
  color: #5f6f64;
  cursor: not-allowed;
}
