/*
 Theme Name:   Insert Client Name
 Theme URI:    https://generatepress.com
 Description:  A custom child theme for INSERT CLIENT NAME
 Author:       Candid Goat
 Author URI:   https://candidgoat.com
 Template:     generatepress
 Version:      0.1
*/

.cgbtn-gradient, .form-button {
      color: #fff;
      padding: 20px 70px;
      border: 2px solid transparent !important;
      border-radius: 40px;
      display: inline-block;
background: linear-gradient(#7EC441, #F677E8, #8466C5, #DB6961) padding-box, linear-gradient(
        var(--angle),
        #7EC441, #F677E8, #8466C5, #DB6961
      ) border-box;
  animation: 2s rotate linear infinite;
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}