.but,
button {
  outline: none;
  border: none;
  background: inherit;
  padding: 10px;
  box-sizing: border-box !important;
}

.button-1 {
  padding: 1em 1.6em;
  border: 0;
  transition: all .5s ease-in-out;
  font-size: 17px;
  letter-spacing: 0.1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(0, 0, 0);
  font-weight: bolder;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 26px;
  box-shadow: 0px 0px 0px 0px rgba(145, 192, 255, 0.5),
    inset -8px -8px 16px 0px rgba(145, 193, 255, 0.973),
    inset 0px 11px 28px 0px rgb(255, 255, 255);
}

.button-1:hover {
  transition: all .5s ease-in-out;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 26px;
  box-shadow: 0px 0px 0px 0px rgba(145, 192, 255, 0.5),
    inset 8px -8px 16px 10px rgb(145, 193, 255),
    inset 0px 11px 28px 0px rgb(255, 255, 255);
}

.button-1:active {
  border-radius: 26px;
  box-shadow: 0px 0px 0px 0px rgba(145, 193, 255, 0.822),
    inset -8px -8px 16px 10px #91c0ff99,
    inset 0px 11px 28px 50px rgb(255, 255, 255);
}

.button-2{
  padding: 0.9em 1.6em;
  border: none;
  outline: none;
  color: #FFF;
  font-family: inherit;
  font-weight: 500;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 12px;
}

.button-2::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(46, 46, 46);
  left: 0;
  top: 0;
  border-radius: 10px;
}


.button-2::before {
  content: "";
  background: linear-gradient(45deg,
      #FF0000, #002BFF, #FF00C8, #002BFF,
      #FF0000, #002BFF, #FF00C8, #002BFF);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}


.button-2:hover::before {
  opacity: 1;
}

.button-2:active:after {
  background: transparent;
}

.button-2:active {
  color: #FFF;
  font-weight: bold;
}

.button-3 {
  padding: 0.9em 1.9em;
  font-size: 16px;
  border: none;
  background: #6285f8;
  color: white;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.button-3:hover {
  color: rgb(255, 255, 255);
}

.button-3::before,
.button-3::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(128, 128, 128, 0.096);
  backdrop-filter: blur(10px);
  z-index: -1;
  transition: all 0.4s;
}

.button-3::after {
  z-index: -2;
  transition: all 0.4s;
}

.button-3:hover::before {
  background: rgb(0, 0, 0, 0.315);
  border-radius: 10px;
}

.button-3:hover::after {
  background: linear-gradient(to right, #cb6ce6, #38b6ff);
  border-radius: 10px;
  transform: scale(1.07, 1.2) rotateX(180deg);
}

.button-4 {
  text-decoration: none;
  padding: 14px 24px;
  color: #ffffff;;
  border: 1px solid #1f1d1d;
  overflow: hidden;
  position: relative;
  transition: color .5s .25s;
  border-radius: 2px;
  background: transparent;
}

.button-4::before,
.button-4::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #181818;
  z-index: -1;
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.785, .135, .15, .86);
}

.button-4::before {
  left: 0;
  transform-origin: left;
}

.button-4::after {
  right: 0;
  transform-origin: right;
}

.button-4:hover::before,
.button-4:hover::after {
  transform: scaleX(1);
}

.button-4:hover {
  color: #f8f8f8;
  transition-delay: .5s;
}

.button-5 {
  background-color: rgb(82, 163, 255);
  color: #f8f8f8;
  border: 0 none;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 300ms ease, color 300ms ease;
  font-size: 17px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.button-5::before,
.button-5::after {
  content: attr(data-label);
  display: inline-block;
  position: absolute;
  transition: all 300ms ease;
  width: 100%;
  left: 0;
  top: 50%;
  color: white;
}

.button-5::before {
  opacity: 0;
  transform: translateY(calc(-50% - 15px));
}

.button-5::after {
  opacity: 1;
  transform: translateY(-50%);
}

.button-5:hover {
  background-color: rgb(66, 133, 209);
}

.button-5:hover::before {
  opacity: 1;
  transform: translateY(-50%);
}

.button-5:hover::after {
  opacity: 0;
  transform: translateY(calc(-50% + 15px));
}

button:active {
  background-color: rgb(82, 163, 255);
}