@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap";

/* src/styles/styles.scss */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes slideInFromBottom {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-slide-in {
  animation: slideInFromBottom 0.5s ease-out;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.animate-rotate {
  animation: rotate 0.3s ease-in-out;
}
.transition-all {
  transition: all 300ms ease-in-out;
}
.transition-fast {
  transition: all 150ms ease-in-out;
}
.transition-slow {
  transition: all 500ms ease-in-out;
}
.transition-colors {
  transition:
    color 300ms ease-in-out,
    background-color 300ms ease-in-out,
    border-color 300ms ease-in-out;
}
.transition-transform {
  transition: transform 300ms ease-in-out;
}
.hover-lift {
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.hover-scale {
  transition: transform 300ms ease-in-out;
}
.hover-scale:hover {
  transform: scale(1.05);
}
.hover-scale-sm {
  transition: transform 300ms ease-in-out;
}
.hover-scale-sm:hover {
  transform: scale(1.02);
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.align-start {
  align-items: flex-start !important;
}
.align-center {
  align-items: center !important;
}
.align-end {
  align-items: flex-end !important;
}
.justify-start {
  justify-content: flex-start !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.justify-between {
  justify-content: space-between !important;
}
.m-0 {
  margin: 0 !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-4 {
  margin: 1rem !important;
}
.m-6 {
  margin: 1.5rem !important;
}
.m-8 {
  margin: 2rem !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-4 {
  margin-top: 1rem !important;
}
.mt-6 {
  margin-top: 1.5rem !important;
}
.mt-8 {
  margin-top: 2rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.mb-8 {
  margin-bottom: 2rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-4 {
  padding: 1rem !important;
}
.p-6 {
  padding: 1.5rem !important;
}
.p-8 {
  padding: 2rem !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-xs {
  font-size: 0.75rem !important;
}
.text-sm {
  font-size: 0.875rem !important;
}
.text-base {
  font-size: 1rem !important;
}
.text-lg {
  font-size: 1.125rem !important;
}
.text-xl {
  font-size: 1.25rem !important;
}
.text-2xl {
  font-size: 1.5rem !important;
}
.text-3xl {
  font-size: 1.875rem !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
.text-gray-900 {
  color: #212121 !important;
}
.text-gray-700 {
  color: #616161 !important;
}
.text-gray-600 {
  color: #757575 !important;
}
.text-gray-500 {
  color: #9e9e9e !important;
}
.text-purple {
  color: #B251E5 !important;
}
.text-pink {
  color: #E353A3 !important;
}
.text-orange {
  color: #FC6951 !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-gray-50 {
  background-color: #fafafa !important;
}
.bg-gray-100 {
  background-color: #f5f5f5 !important;
}
.bg-gradient-primary {
  background:
    linear-gradient(
      88.25deg,
      #B251E5 2.77%,
      #E353A3 49.91%,
      #FC6951 97.04%) !important;
}
.rounded {
  border-radius: 0.5rem !important;
}
.rounded-lg {
  border-radius: 1rem !important;
}
.rounded-xl {
  border-radius: 1.5rem !important;
}
.rounded-2xl {
  border-radius: 2rem !important;
}
.rounded-3xl {
  border-radius: 3rem !important;
}
.rounded-full {
  border-radius: 9999px !important;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}
.shadow-purple {
  box-shadow: 0 20px 25px -5px rgba(178, 81, 229, 0.4), 0 10px 10px -5px rgba(178, 81, 229, 0.04) !important;
}
.shadow-pink {
  box-shadow: 0 20px 25px -5px rgba(227, 83, 163, 0.4), 0 10px 10px -5px rgba(227, 83, 163, 0.04) !important;
}
.shadow-orange {
  box-shadow: 0 20px 25px -5px rgba(252, 105, 81, 0.4), 0 10px 10px -5px rgba(252, 105, 81, 0.04) !important;
}
.shadow-gradient {
  box-shadow: 0 10px 40px -10px rgba(178, 81, 229, 0.4), 0 5px 20px -5px rgba(178, 81, 229, 0.3) !important;
}
.shadow-gradient-hover {
  box-shadow: 0 15px 50px -10px rgba(178, 81, 229, 0.5), 0 8px 25px -5px rgba(178, 81, 229, 0.4) !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.cursor-not-allowed {
  cursor: not-allowed !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-auto {
  overflow: auto !important;
}
.relative {
  position: relative !important;
}
.absolute {
  position: absolute !important;
}
.fixed {
  position: fixed !important;
}
.w-full {
  width: 100% !important;
}
.h-full {
  height: 100% !important;
}
.gradient-text-primary {
  background:
    linear-gradient(
      88.25deg,
      #B251E5 2.77%,
      #E353A3 49.91%,
      #FC6951 97.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-secondary {
  background:
    linear-gradient(
      to right,
      #E353A3,
      #B251E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-gradient-glow {
  background:
    linear-gradient(
      88.25deg,
      #B251E5 2.77%,
      #E353A3 49.91%,
      #FC6951 97.04%);
  box-shadow: 0px 0px 10px 0px #FFFFFF inset;
  color: #ffffff;
  border: none;
  transition: all 300ms ease-in-out;
}
.btn-gradient-glow:hover {
  box-shadow:
    0px 0px 20px 0px rgba(255, 255, 255, 0.4) inset,
    0 15px 50px -10px rgba(178, 81, 229, 0.5),
    0 8px 25px -5px rgba(178, 81, 229, 0.4);
  transform: translateY(-2px);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #212121;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button {
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 9999px;
}
*::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 9999px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #bdbdbd;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
