.rw-wrap {
  max-width: 600px;
  margin: 2em auto;
  font-family: sans-serif;
}
.rw-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
}
.rw-step {
  width: 2em; height: 2em;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #777;
}
.rw-step.active {
  background: #ff9100;
  color: #fff;
}

.rw-step-content {
  border: 1px solid #ddd;
  padding: 1.5em;
  border-radius: 8px;
  margin-bottom: 1em;
}

.rw-field {
  margin-bottom: 1em;
}
.rw-field input,
.rw-field select {
  width: 100%;
  padding: .75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.rw-nav {
  display: flex;
  justify-content: space-between;
  gap: .5em;
}
.rw-btn {
  background: #ff9100;
  color: #fff;
  border: none;
  padding: .75em 1.5em;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: filter .2s;
}
.rw-btn:hover {
  filter: brightness(1.1);
}
