/* Onboarding */
.greet-user {
  h2 {
    color: var(--accent);
  }
}

.steps-tracker-container {
  width: 100%;
  margin: 0 auto;
  h4 {
    text-align: center;
  }
}

.steps-tracker-wrapper {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 12px;
}

.step-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  width: 100%;
  height: 30px;
  border-radius: 9999px;
  transition: background-color 0.3s ease;

  &.active {
    background-color: #111827;
  }

  &.pending {
    background-color: #dfdfdf;
  }

  &.completed {
    background-color: var(--accent);
    text-align: center;
    align-content: center;
    color: white;
    font-size: 15px;
  }
}

.step-information-container {
  width: 100%;
}

/* Step 1 of Onboarding */
.verify-user-toured-container {
  display: flex;
  flex-direction: column;

  form {
    width: 100%;
    align-content: center;

    .toured-user-actions {
      display: flex;
      width: 50%;
      margin: 0 auto;
      justify-content: center;
      align-items: center;
      gap: 100px;

      .toured-user-action-btn-wrapper {
        display: flex;
        flex-direction: column;

        width: 200px;
        height: 200px;
        background: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        text-align: center;
        justify-content: center;
        align-content: center;
        gap: 20px;
        padding: 0 20px;
      }
    }
  }
}

/* Step 2 of Onboarding */
.subscription-tier-container {
  width: inherit;
  margin: 0 auto;

  .subscription-tier-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    .payment-card {
      max-width: 170px;
      background: #ffffff;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 1.5rem;

      .plan-name {
        font-size: 14px;
        color: #666666;
        margin: 0 0 4px;
      }

      .price-row {
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-bottom: 4px;

        .price {
          font-size: 32px;
          font-weight: 500;
          color: #111111;
        }

        .period {
          font-size: 14px;
          color: #666666;
        }
      }

      .choose-btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
        background: var(--accent);
        border: 1px solid #cccccc;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.15s ease;
        text-decoration: none;
        color: white;

        &:hover {
          background: var(--dark-accent);
        }

        &:visited {
          color: inherit;
          text-decoration: inherit;
        }
      }

      .description {
        border-top: 1px solid #e5e5e5;
        padding-top: 16px;
        margin-bottom: 20px;
      }
    }
  }
}

/* Step 4 of onboarding */
.user-step-4-agreement-container {
    width: 100%;
}

.user-risk-text-container {
    width: 100%;
    
    .user-risk-text-wrapper
    {
        width: 80%;
        margin: 0 auto;
    }
}

.logo-stamp {
  text-align: center;
  img {
    height: 150px;
    width: auto;
  }
}

.user-risk-agreement-form-container {
  width: 80%;
  margin: 0 auto;
  form {
    text-align: center;
    display: flex;
    flex-direction: column;
    label {
      font-size: 17px;
    }
    button {
      font-size: 26px;
      width: 50%;
      margin: 20px auto;
    }
  }
}
