/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Labels */
.card-body label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Champs */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

/* Focus sur champs */
input:focus,
textarea:focus,
select:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.2);
  outline: none;
}

/* Bouton */
.rsform-submit-button {
  background: linear-gradient(135deg, #007bff, #00b4d8);
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Bouton hover */
.rsform-submit-button:hover {
  background: linear-gradient(135deg, #0056b3, #0096c7);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
