.rtl-form {
  direction: rtl;
  font-family: Tahoma;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.steps-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.step.active {
  background: #0073aa;
  color: white;
}

.form-message {
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
}