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

.ads-alert {
  padding: 15px;
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  margin-bottom: 1rem;
}

.ads-form-group {
  margin-bottom: 1.5rem;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.3s;
}

.ads-form-group:hover {
  border-color: #0073aa;
  background: #f1f8ff;
}

.ads-form-group label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.ads-form-group input[type="radio"] {
  margin-top: 3px;
  margin-right: 15px;
}

.ads-option {
  flex: 1;
}

.ads-option-title {
  display: block;
  font-weight: 600;
  color: #1d2327;
  margin-bottom: 5px;
}

.ads-option-desc {
  display: block;
  color: #646970;
  font-size: 0.9em;
}

.ads-form-submit {
  margin-top: 1.5rem;
}

.ads-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073aa !important;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.ads-button:hover {
  background: #005177;
}

.ads-form-navigation {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* Styles pour le formulaire multi-étapes */
.ads-form-row {
  display: flex;
  gap: 15px;
}

.ads-form-row .ads-form-group {
  flex: 1;
}

.ads-form-navigation {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.ads-button-secondary {
  background: #6c757d;
}

.ads-button-secondary:hover {
  background: #5a6268;
}

.ads-consent-box {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #f8f9fa;
}

.ads-consent-box h4 {
  margin-top: 0;
  color: #0073aa;
}

.ads-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.ads-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
}

.ads-inscription-success {
  text-align: center;
  padding: 30px;
  background: #f0fff4;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
}

.ads-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Styles pour le bouton de réinitialisation */
.ads-inscription-reset {
  text-align: right;
  margin-bottom: 15px;
}

.ads-button-danger {
  background: #dc3545;
}

.ads-button-danger:hover {
  background: #bd2130;
}

/* Pré-remplissage des champs */
.ads-form-group input,
.ads-form-group textarea,
.ads-form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Styles pour la navigation entre étapes */
.ads-step-indicator {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.ads-step {
  flex: 1;
  text-align: center;
  padding: 10px;
  position: relative;
}

.ads-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  background: #0073aa;
}

.ads-step.active {
  font-weight: bold;
  color: #0073aa;
}

.ads-step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #f0f0f0;
  margin-right: 5px;
}

.ads-step.active .ads-step-number {
  background: #0073aa;
  color: white;
}
