.stepper {
  &-container {
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    height: 100%;
    padding-top: 2rem;
  }

  &-empty {
    padding: 1rem;
    color: #6b7280; // gray-500
  }

  &-header {
    display: flex;
    margin-bottom: 4rem;
  }

  &-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  &-line {
    position: absolute;
    height: 1px;
    top: 5px;
    width: 90%;
    left: 55%;
    background-color: #dae2ed; // gray-200
  }

  &-circle {
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    border: 2px solid #dae2ed;
    background-color: #dae2ed;
    transition: all 0.2s ease;

    &.active {
      border-color: #7839a9;
      background-color: #7839a9;
    }

    span {
      font-size: 0.875rem; // text-sm
    }
  }

  &-title {
    margin-top: 0.5rem;
    font-size: 0.875rem; // text-sm
    text-align: center;
  }

  &-done-mark {
    margin-left: 0.25rem;
    color: #10b981; // green-500
  }

  &-content {
    background-color: white;
    border-radius: 0.5rem;
    max-width: 400px;
    margin: auto;

    h2 {
      font-size: 1.5rem;
      font-weight: 400;
      text-align: center;
      margin: 32px 0;
      line-height: 1;
    }
  }

  &-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: auto;
    margin-top: 3rem;
  }

  &-btn {
    padding: 12px 10px;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    font-size: 14px;
    background-color: #7839a9;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    &-icon {
      width: 20px;
      height: 20px;
      svg {
        max-width: 100%;
        max-height: 100%;
      }
    }
  }
}
