/* Paiement section modern style */
.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.payment-method-card {
  flex: 1 1 180px;
  min-width: 180px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.payment-method-card.selected, .payment-method-card:hover {
  border-color: #c85320;
  box-shadow: 0 2px 8px rgba(200, 83, 32, 0.08);
}
.payment-method-card input[type="radio"] {
  display: none;
}
.payment-method-card .method-name {
  font-weight: bold;
  font-size: 1.1rem;
}
.payment-method-card .method-desc {
  font-size: 0.95rem;
  color: #888;
}
#mobile-money-form {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
  border: 1px solid #e0e0e0;
}
#generate-otp-btn {
  margin-top: 0.5rem;
}
#otp-test-info {
  font-size: 1rem;
  font-weight: bold;
}
.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  transition: background 0.2s, color 0.2s;
}
.step.active, .step-indicator .step-container.active .step {
  background: #c85320;
  color: #fff;
}
.step-label {
  font-size: 0.95rem;
  color: #888;
  text-align: center;
} 