._startButton_12o98_1 {
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: var(--white-color);
  font-size: 0.96rem;
  font-weight: 600;
  background: linear-gradient(to bottom, #10A37F, #15db89);
  width: 100%;
  max-width: 300px;
  height: 40px;
  min-height: 40px;
  text-decoration: none;
  gap: 15px;
  padding: 22px 18px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  text-wrap: nowrap;
  box-shadow: 0 3px 34px -10px rgba(0, 0, 0, 0.452);
  position: relative;
  overflow: hidden;
  z-index: 0;

  img {
    height: 15px;
  }

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #08bb8e, #0a9e7a);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 11px;
    z-index: -1;
  }

  &:hover::after {
    opacity: 1;
  }
}