/*! CSS Used from: Embedded */
*,
*::before,
*::after {
  box-sizing: border-box;
}
.w-full {
  width: 100%;
}
h3 {
  text-transform: uppercase;
  background: #fff;
  background: -webkit-linear-gradient(to right, #00a6fb 0%, #00fddc 100%);
  background: -moz-linear-gradient(to right, #00a6fb 0%, #00fddc 100%);
  background: linear-gradient(to right, #00a6fb 0%, #00fddc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h3,
p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 2rem;
}
p {
  line-height: 1.4;
}
.text-center {
  text-align: center;
}
.card {
  background: radial-gradient(
    100% 100% at 50% 5%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 0.5rem;
  backdrop-filter: blur(4px);
}
.card > div {
  background: #2d2d59;
  border-radius: 0.5rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 1.5px 1.1px rgba(0, 0, 0, 0.034), 0 3.6px 2.5px rgba(0, 0, 0, 0.048),
    0 6.8px 4.8px rgba(0, 0, 0, 0.06), 0 12.1px 8.5px rgba(0, 0, 0, 0.072),
    0 22.6px 15.9px rgba(0, 0, 0, 0.086), 0 54px 38px rgba(0, 0, 0, 0.12);
}

.button {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  outline: none;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #00a6fb 0%,
    #00fddc 50%,
    #00a6fb 100%
  );
  background-position: left center;
  transition: all 0.4s ease-out;
  border-radius: 0.5rem;
  padding: 0.8rem 1.2rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 -4px 2px -1px rgba(0, 0, 0, 0.15),
    0 0.5px 0.6px rgba(0, 0, 0, 0.039), 0 1.1px 1.3px rgba(0, 0, 0, 0.057),
    0 2.1px 2.5px rgba(0, 0, 0, 0.07), 0 3.8px 4.5px rgba(0, 0, 0, 0.083),
    0 7.1px 8.4px rgba(0, 0, 0, 0.101), 0 17px 20px rgba(0, 0, 0, 0.14);
}
.button:hover {
  background-position: right center;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3),
    inset 0 -4px 2px -1px rgba(0, 0, 0, 0.15),
    0 0.1px 0.2px rgba(0, 0, 0, 0.039), 0 0.3px 0.4px rgba(0, 0, 0, 0.057),
    0 0.5px 0.8px rgba(0, 0, 0, 0.07), 0 0.9px 1.3px rgba(0, 0, 0, 0.083),
    0 1.7px 2.5px rgba(0, 0, 0, 0.101), 0 4px 6px rgba(0, 0, 0, 0.14);
}
.button > span {
  color: #06070a;
}
.button.is-glowing {
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 -4px 2px -1px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.1),
    0 0 0 0 rgba(255, 255, 255, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.2),
    0 0 0 0 rgba(255, 255, 255, 0.3), 0 0.5px 0.6px rgba(0, 0, 0, 0.039),
    0 1.1px 1.3px rgba(0, 0, 0, 0.057), 0 2.1px 2.5px rgba(0, 0, 0, 0.07),
    0 3.8px 4.5px rgba(0, 0, 0, 0.083), 0 7.1px 8.4px rgba(0, 0, 0, 0.101),
    0 17px 20px rgba(0, 0, 0, 0.14);
}
.button.is-glowing:hover {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3),
    inset 0 -4px 2px -1px rgba(0, 0, 0, 0.15),
    0 0 30px 0 rgba(255, 255, 255, 0.1), 0 0 25px 0 rgba(255, 255, 255, 0.15),
    0 0 10px 0 rgba(255, 255, 255, 0.2), 0 0 3.33px 0 rgba(255, 255, 255, 0.3),
    0 0.1px 0.2px rgba(0, 0, 0, 0.039), 0 0.3px 0.4px rgba(0, 0, 0, 0.057),
    0 0.5px 0.8px rgba(0, 0, 0, 0.07), 0 0.9px 1.3px rgba(0, 0, 0, 0.083),
    0 1.7px 2.5px rgba(0, 0, 0, 0.101), 0 4px 6px rgba(0, 0, 0, 0.14);
}