.gradient-border-button {
    position: relative;
    padding: 1rem 2rem;
    font-weight: 500;
    color: white;
    border-radius: 9999px;
    background: linear-gradient(to bottom, #D6B77D, #FFDC8C);
    transition: all 0.3s ease;
  }

  .gradient-border-button:hover {
    background: transparent;
    color: #D6B77D;
  }

  .gradient-border-button:hover::before {
    content: '';
    position: absolute;
    inset: -2px;
    padding: 2px;
    background: linear-gradient(to bottom, #D6B77D, #FFDC8C);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
  }