.button-component {
  display: flex;
  height: 6rem;
  align-items: center;
  padding: 0 3.6rem;
  border-radius: 20rem;
  background-color: var(--color-accent);
  gap: 3.6rem;
  justify-content: space-between;
  padding: 0.6rem;
  padding-left: 3.6rem;
}
.button-component .button__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.button-component .button__label {
  color: #fff;
}
.button-component .button__icon {
  display: flex;
  height: 100%;
  /* align-self: stretch; */
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.button-component .button__icon .icon {
  width: 50%;
  max-height: 100%;
  fill: #000;
  display: flex;
}
