.button-primary {
  border-radius: 12px;
  background: linear-gradient(90deg, #E7E2D6 0%, #AE8394 100%);
  box-shadow: 0px 0px 20px 0px #63E1E140;
  font-weight: bold;
  height: 52px;
  font-size: 25px;
  width: 317px;

  border: none;
  cursor: pointer;

  align-items: center;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.button-primary:hover {
  background: var(--white);
}

.button-primary.solid {
  background: #73364F;
  color: #FFFFFF;
  width: 206px;
  height: 54px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 22px;
  line-height: 18px;
  letter-spacing: 0%;
}

.button-primary.solid:hover {
  background: var(--primary);
}
