.form-wrapper {
  width: 100%;
  max-width: 500px;
  margin: auto;
  margin-top: 80px;
  background: #fff;
  padding: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .form-wrapper {
    width: 100%;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
}
.section-title {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

h2 {
  margin-bottom: 20px;
  color: var(--blue-dark);
  text-align: center;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray-medium);
  background-color: transparent;
  outline: none;
  border-radius: 4px;
  transition: 0.3s;
}
input:focus {
  border-color: var(--blue-primary);
}
.password-wrapper {
  position: relative;
}
.password-wrapper i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--gray-dark);
}
.btn {
  background: var(--blue-primary);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover{
    background-color: var(--blue-dark);
}
.btn:disabled {
  background: var(--gray-dark);
  cursor: not-allowed;
}
.btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.progress div {
  flex: 1;
  height: 6px;
  margin: 0 4px;
  background: var(--gray-medium);
  border-radius: 3px;
}
.progress div.active {
  background: var(--blue-primary);
}
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.options a {
  color: var(--blue-primary);
  text-decoration: none;
  font-size: 14px;
}
