.Btn-decor
{
    background: linear-gradient(to bottom, #3bafdd 0%,#2260e562 100%);
    color: white;
    padding: 0.4em 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
  }

  .Btn-decor:hover {
    /* transform: translateY(-3px); */
    background: linear-gradient(to bottom, #2ceb49 0%,#09c65e62 100%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  }
  
  .Btn-decor:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }

  .Btn-decor span {
    display: block;
    margin-left: 0.4em;
    transition: all 0.5s;
  }
  
  .Btn-decor svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: all 0.3s;
  }

  .Btn-decor .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 0.5em;
    transition: all 0.3s;
  }

  .Btn-decor:hover .svg-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .Btn-decor:hover svg {
    transform: rotate(45deg);
  }
