.regbuttons button {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    text-align: center !important;
    font-weight: bold !important;
    padding: 0.7em 1em !important;
    border: 2px solid #0d6efd !important;
    border-radius: 5px !important;
    position: relative !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1) !important;
    color: #0d6efd !important;
    text-decoration: none !important;
    transition: 0.3s ease all !important;
    z-index: 1 !important;
  }
  
  .regbuttons button:before {
    transition: 0.5s all ease !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    right: 50% !important;
    bottom: 0 !important;
    opacity: 0 !important;
    content: '' !important;
    background-color: #0d6efd !important;
    z-index: -1 !important;
  }
  
  .regbuttons button:hover, .regbuttons button:focus {
    color: white !important;
  }
  
  .regbuttons button:hover:before, .regbuttons button:focus:before {
    transition: 0.5s all ease !important;
    left: 0 !important;
    right: 0 !important;
    opacity: 1 !important;
  }
  
  .regbuttons button:active {
    transform: scale(0.9) !important;
  }