/* [project]/apps/web/components/waitlist/GradientText.css [app-client] (css) */
.animated-gradient-text {
  cursor: pointer;
  border-radius: 1.25rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: 0 auto;
  font-weight: 500;
  transition: box-shadow .5s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.animated-gradient-text.with-border {
  padding: .35rem .75rem;
}

.gradient-overlay {
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.gradient-overlay:before {
  content: "";
  border-radius: inherit;
  z-index: -1;
  background-color: #101011;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-content {
  z-index: 2;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.animated-gradient-text.hero-gradient-text {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  cursor: default;
  background: none;
  overflow: visible;
}

.animated-gradient-text.hero-gradient-text .text-content {
  padding-bottom: .16em;
  display: block;
}

/*# sourceMappingURL=apps_web_components_waitlist_GradientText_0a0cfd7f.css.map*/