/* sass-plugin-1:/Users/maronato/Developer/vue-toastification/src/scss/index.scss */
.Vue-Toastification__container {
  z-index: 9999;
  position: fixed;
  padding: 4px;
  width: 600px;
  box-sizing: border-box;
  display: flex;
  min-height: 100%;
  color: #fff;
  flex-direction: column;
  pointer-events: none;
}
@media only screen and (min-width : 600px) {
  .Vue-Toastification__container.top-left,
  .Vue-Toastification__container.top-right,
  .Vue-Toastification__container.top-center {
    top: 1em;
  }
  .Vue-Toastification__container.bottom-left,
  .Vue-Toastification__container.bottom-right,
  .Vue-Toastification__container.bottom-center {
    bottom: 1em;
    flex-direction: column-reverse;
  }
  .Vue-Toastification__container.top-left,
  .Vue-Toastification__container.bottom-left {
    left: 1em;
  }
  .Vue-Toastification__container.top-left .Vue-Toastification__toast,
  .Vue-Toastification__container.bottom-left .Vue-Toastification__toast {
    margin-right: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-left .Vue-Toastification__toast--rtl,
    .Vue-Toastification__container.bottom-left .Vue-Toastification__toast--rtl {
      margin-right: unset;
      margin-left: auto;
    }
  }
  .Vue-Toastification__container.top-right,
  .Vue-Toastification__container.bottom-right {
    right: 1em;
  }
  .Vue-Toastification__container.top-right .Vue-Toastification__toast,
  .Vue-Toastification__container.bottom-right .Vue-Toastification__toast {
    margin-left: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-right .Vue-Toastification__toast--rtl,
    .Vue-Toastification__container.bottom-right .Vue-Toastification__toast--rtl {
      margin-left: unset;
      margin-right: auto;
    }
  }
  .Vue-Toastification__container.top-center,
  .Vue-Toastification__container.bottom-center {
    left: 50%;
    margin-left: -300px;
  }
  .Vue-Toastification__container.top-center .Vue-Toastification__toast,
  .Vue-Toastification__container.bottom-center .Vue-Toastification__toast {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Vue-Toastification__container .Vue-Toastification__toast {
    width: 100%;
  }
  .Vue-Toastification__container.top-left,
  .Vue-Toastification__container.top-right,
  .Vue-Toastification__container.top-center {
    top: 0;
  }
  .Vue-Toastification__container.bottom-left,
  .Vue-Toastification__container.bottom-right,
  .Vue-Toastification__container.bottom-center {
    bottom: 0;
    flex-direction: column-reverse;
  }
}
.Vue-Toastification__toast {
  display: inline-flex;
  position: relative;
  max-height: 800px;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 22px 24px;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  justify-content: space-between;
  font-family:
    "Lato",
    Helvetica,
    "Roboto",
    Arial,
    sans-serif;
  max-width: 600px;
  min-width: 326px;
  pointer-events: auto;
  overflow: hidden;
  transform: translateZ(0);
  direction: ltr;
}
.Vue-Toastification__toast--rtl {
  direction: rtl;
}
.Vue-Toastification__toast--default {
  background-color: #1976d2;
  color: #fff;
}
.Vue-Toastification__toast--info {
  background-color: #2196f3;
  color: #fff;
}
.Vue-Toastification__toast--success {
  background-color: #4caf50;
  color: #fff;
}
.Vue-Toastification__toast--error {
  background-color: #ff5252;
  color: #fff;
}
.Vue-Toastification__toast--warning {
  background-color: #ffc107;
  color: #fff;
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__toast {
    border-radius: 0px;
    margin-bottom: 0.5rem;
  }
}
.Vue-Toastification__toast-body {
  flex: 1;
  line-height: 24px;
  font-size: 16px;
  word-break: break-word;
  white-space: pre-wrap;
}
.Vue-Toastification__toast-component-body {
  flex: 1;
}
.Vue-Toastification__toast.disable-transition {
  animation: none !important;
}
.Vue-Toastification__close-button {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  padding-left: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  align-items: center;
  color: #fff;
  opacity: 0.3;
  transition: visibility 0s, opacity 0.2s linear;
}
.Vue-Toastification__close-button:hover,
.Vue-Toastification__close-button:focus {
  opacity: 1;
}
.Vue-Toastification__toast:not(:hover) .Vue-Toastification__close-button.show-on-hover {
  opacity: 0;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__close-button {
  padding-left: unset;
  padding-right: 10px;
}
@keyframes scale-x-frames {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Vue-Toastification__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
  animation: scale-x-frames linear 1 forwards;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__progress-bar {
  right: 0;
  left: unset;
  transform-origin: right;
}
.Vue-Toastification__icon {
  margin: auto 18px auto 0px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  transition: 0.3s ease;
  align-items: center;
  width: 20px;
  height: 100%;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__icon {
  margin: auto 0px auto 18px;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutRight {
  40% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(1000px, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Vue-Toastification__bounce-enter-active.top-left,
.Vue-Toastification__bounce-enter-active.bottom-left {
  animation-name: bounceInLeft;
}
.Vue-Toastification__bounce-enter-active.top-right,
.Vue-Toastification__bounce-enter-active.bottom-right {
  animation-name: bounceInRight;
}
.Vue-Toastification__bounce-enter-active.top-center {
  animation-name: bounceInDown;
}
.Vue-Toastification__bounce-enter-active.bottom-center {
  animation-name: bounceInUp;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).top-left,
.Vue-Toastification__bounce-leave-active:not(.disable-transition).bottom-left {
  animation-name: bounceOutLeft;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).top-right,
.Vue-Toastification__bounce-leave-active:not(.disable-transition).bottom-right {
  animation-name: bounceOutRight;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).top-center {
  animation-name: bounceOutUp;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).bottom-center {
  animation-name: bounceOutDown;
}
.Vue-Toastification__bounce-leave-active,
.Vue-Toastification__bounce-enter-active {
  animation-duration: 750ms;
  animation-fill-mode: both;
}
.Vue-Toastification__bounce-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}
@keyframes fadeOutTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes fadeOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.Vue-Toastification__fade-enter-active.top-left,
.Vue-Toastification__fade-enter-active.bottom-left {
  animation-name: fadeInLeft;
}
.Vue-Toastification__fade-enter-active.top-right,
.Vue-Toastification__fade-enter-active.bottom-right {
  animation-name: fadeInRight;
}
.Vue-Toastification__fade-enter-active.top-center {
  animation-name: fadeInTop;
}
.Vue-Toastification__fade-enter-active.bottom-center {
  animation-name: fadeInBottom;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).top-left,
.Vue-Toastification__fade-leave-active:not(.disable-transition).bottom-left {
  animation-name: fadeOutLeft;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).top-right,
.Vue-Toastification__fade-leave-active:not(.disable-transition).bottom-right {
  animation-name: fadeOutRight;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).top-center {
  animation-name: fadeOutTop;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).bottom-center {
  animation-name: fadeOutBottom;
}
.Vue-Toastification__fade-leave-active,
.Vue-Toastification__fade-enter-active {
  animation-duration: 750ms;
  animation-fill-mode: both;
}
.Vue-Toastification__fade-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}
@keyframes slideInBlurredLeft {
  0% {
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredTop {
  0% {
    transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredRight {
  0% {
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredBottom {
  0% {
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideOutBlurredTop {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 0%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredBottom {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredLeft {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-1000px) scaleX(2) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredRight {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1000px) scaleX(2) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
.Vue-Toastification__slideBlurred-enter-active.top-left,
.Vue-Toastification__slideBlurred-enter-active.bottom-left {
  animation-name: slideInBlurredLeft;
}
.Vue-Toastification__slideBlurred-enter-active.top-right,
.Vue-Toastification__slideBlurred-enter-active.bottom-right {
  animation-name: slideInBlurredRight;
}
.Vue-Toastification__slideBlurred-enter-active.top-center {
  animation-name: slideInBlurredTop;
}
.Vue-Toastification__slideBlurred-enter-active.bottom-center {
  animation-name: slideInBlurredBottom;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).top-left,
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).bottom-left {
  animation-name: slideOutBlurredLeft;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).top-right,
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).bottom-right {
  animation-name: slideOutBlurredRight;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).top-center {
  animation-name: slideOutBlurredTop;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).bottom-center {
  animation-name: slideOutBlurredBottom;
}
.Vue-Toastification__slideBlurred-leave-active,
.Vue-Toastification__slideBlurred-enter-active {
  animation-duration: 750ms;
  animation-fill-mode: both;
}
.Vue-Toastification__slideBlurred-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}

.alogo[data-v-a677ea92] {
  overflow: visible;
}

/* Bars — hidden by default, animate on .alogo--animate */
.alogo__bar[data-v-a677ea92] {
  transform-origin: center center;
  opacity: 0;
  transform: translateX(0) scaleY(0.15);
}
.alogo__bar--left[data-v-a677ea92] {
  transform: translateX(17px) scaleY(0.15);
}
.alogo__bar--right[data-v-a677ea92] {
  transform: translateX(-17px) scaleY(0.15);
}

/* Animate in */
.alogo--animate .alogo__bar--right[data-v-a677ea92] {
  animation: bar-right-in-a677ea92 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.alogo--animate .alogo__bar--left[data-v-a677ea92] {
  animation: bar-left-in-a677ea92 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.28s both;
}

/* Glow on the whole SVG — only when animating */
.alogo--animate[data-v-a677ea92] {
  animation: alogo-glow-a677ea92 3s ease-in-out 1s infinite;
}
@keyframes bar-right-in-a677ea92 {
0% {
    transform: translateX(-17px) scaleY(0.15);
    opacity: 0;
}
100% {
    transform: translateX(0) scaleY(1);
    opacity: 1;
}
}
@keyframes bar-left-in-a677ea92 {
0% {
    transform: translateX(17px) scaleY(0.15);
    opacity: 0;
}
100% {
    transform: translateX(0) scaleY(1);
    opacity: 0.4;
}
}
@keyframes alogo-glow-a677ea92 {
0%, 100% {
    filter: drop-shadow(0 0 12px rgba(118, 75, 162, 0.3));
}
50% {
    filter: drop-shadow(0 0 24px rgba(118, 75, 162, 0.55));
}
}

/* Overlay */
.auth-overlay[data-v-578c2da7] {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
}

/* Card */
.auth-card[data-v-578c2da7] {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 48px 40px 40px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 68px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(118, 75, 162, 0.08);
}

/* Close */
.auth-close[data-v-578c2da7] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #525259;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.auth-close[data-v-578c2da7]:hover {
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.06);
}

/* Header */
.auth-header[data-v-578c2da7] {
  text-align: center;
  margin-bottom: 36px;
}
.auth-logo[data-v-578c2da7] {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}
.auth-title[data-v-578c2da7] {
  font-size: 24px;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.auth-subtitle[data-v-578c2da7] {
  font-size: 14px;
  color: #71717a;
  line-height: 1.4;
}

/* Form */
.auth-form[data-v-578c2da7] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-field[data-v-578c2da7] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-label[data-v-578c2da7] {
  font-size: 13px;
  font-weight: 500;
  color: #a1a1aa;
  padding-left: 2px;
}
.auth-input[data-v-578c2da7] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fafafa;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}
.auth-input[data-v-578c2da7]::placeholder {
  color: #3f3f46;
}
.auth-input[data-v-578c2da7]:hover {
  border-color: rgba(255, 255, 255, 0.14);
}
.auth-input[data-v-578c2da7]:focus {
  border-color: #764BA2;
  background: rgba(118, 75, 162, 0.04);
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

/* Error */
.auth-error[data-v-578c2da7] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
.auth-error svg[data-v-578c2da7] {
  flex-shrink: 0;
  color: #ef4444;
}

/* Submit */
.auth-submit[data-v-578c2da7] {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #764BA2 0%, #9b6fc9 50%, #764BA2 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}
.auth-submit[data-v-578c2da7]:hover:not(:disabled) {
  background-position: 100% 0;
  box-shadow: 0 4px 24px rgba(118, 75, 162, 0.4);
  transform: translateY(-1px);
}
.auth-submit[data-v-578c2da7]:active:not(:disabled) {
  transform: translateY(0);
}
.auth-submit[data-v-578c2da7]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Spinner */
.auth-spinner[data-v-578c2da7] {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-578c2da7 0.6s linear infinite;
}
@keyframes spin-578c2da7 {
to { transform: rotate(360deg);
}
}

/* Divider */
.auth-divider[data-v-578c2da7] {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 24px;
}
.auth-divider[data-v-578c2da7]::before,
.auth-divider[data-v-578c2da7]::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.auth-divider span[data-v-578c2da7] {
  font-size: 12px;
  font-weight: 500;
  color: #3f3f46;
  letter-spacing: 0.05em;
}

/* Switch mode */
.auth-switch[data-v-578c2da7] {
  text-align: center;
  font-size: 14px;
  color: #71717a;
}
.auth-switch a[data-v-578c2da7] {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  margin-left: 2px;
}
.auth-switch a[data-v-578c2da7]:hover {
  color: #c4b5fd;
}

/* === Transitions === */

/* Modal enter/leave */
.modal-enter-active[data-v-578c2da7],
.modal-leave-active[data-v-578c2da7] {
  transition: opacity 0.25s ease;
}
.modal-enter-active .auth-card[data-v-578c2da7],
.modal-leave-active .auth-card[data-v-578c2da7] {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease;
}
.modal-enter-from[data-v-578c2da7],
.modal-leave-to[data-v-578c2da7] {
  opacity: 0;
}
.modal-enter-from .auth-card[data-v-578c2da7] {
  transform: scale(0.95) translateY(10px);
  opacity: 0;
}
.modal-leave-to .auth-card[data-v-578c2da7] {
  transform: scale(0.97);
  opacity: 0;
}

/* Error transition */
.error-enter-active[data-v-578c2da7],
.error-leave-active[data-v-578c2da7] {
  transition: all 0.2s ease;
}
.error-enter-from[data-v-578c2da7],
.error-leave-to[data-v-578c2da7] {
  opacity: 0;
  transform: translateY(-4px);
}

/* === Responsive === */
@media (max-width: 480px) {
.auth-card[data-v-578c2da7] {
    padding: 36px 24px 32px;
    border-radius: 16px;
}
.auth-title[data-v-578c2da7] {
    font-size: 22px;
}
.auth-header[data-v-578c2da7] {
    margin-bottom: 28px;
}
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #764BA2;
  --secondary: #9b6fc9;
  --accent: #764BA2;
  --dark: #000000;
  --dark-2: #0a0a0a;
  --dark-3: #141414;
  --light: #ffffff;
  --gray: #999999;
  --gray-dark: #666666;
  --gradient-1: linear-gradient(135deg, #764BA2 0%, #9b6fc9 100%);
  --gradient-2: linear-gradient(135deg, #5a3780 0%, #764BA2 100%);
  --gradient-3: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  width: 100%;
  min-height: 100vh;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--light);
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.btn-primary:hover {
  background: var(--gradient-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  border-radius: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Text glow effect for large headings */
h1, h2, .section-title, .cta-title {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.25), 0 0 80px rgba(255, 255, 255, 0.1);
}

/* ===== Scroll Animation System ===== */

/* Base: all data-scroll elements start hidden */
[data-scroll] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Fade Up */
[data-scroll="fade-up"] {
  transform: translateY(60px);
}
[data-scroll="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Down */
[data-scroll="fade-down"] {
  transform: translateY(-60px);
}
[data-scroll="fade-down"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Left */
[data-scroll="fade-left"] {
  transform: translateX(-80px);
}
[data-scroll="fade-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Right */
[data-scroll="fade-right"] {
  transform: translateX(80px);
}
[data-scroll="fade-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale Up */
[data-scroll="scale-up"] {
  transform: scale(0.85);
  filter: blur(4px);
}
[data-scroll="scale-up"].is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Scale Down (zoom out) */
[data-scroll="scale-down"] {
  transform: scale(1.15);
  filter: blur(4px);
}
[data-scroll="scale-down"].is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Rotate In */
[data-scroll="rotate-in"] {
  transform: rotate(-5deg) translateY(40px);
}
[data-scroll="rotate-in"].is-visible {
  opacity: 1;
  transform: rotate(0) translateY(0);
}

/* Flip Up */
[data-scroll="flip-up"] {
  transform: perspective(800px) rotateX(15deg) translateY(40px);
  transform-origin: bottom center;
}
[data-scroll="flip-up"].is-visible {
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
}

/* Clip Reveal (text wipe) */
[data-scroll="clip-reveal"] {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-scroll="clip-reveal"].is-visible {
  clip-path: inset(0 0% 0 0);
}

/* Blur In */
[data-scroll="blur-in"] {
  filter: blur(12px);
  transform: translateY(20px);
}
[data-scroll="blur-in"].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Sections are always visible now (individual elements animate) */
section {
  opacity: 1;
  transform: none;
}

/* ===== Keyframe Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(118, 75, 162, 0.3); }
  50% { box-shadow: 0 0 40px rgba(118, 75, 162, 0.6), 0 0 80px rgba(118, 75, 162, 0.2); }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(118, 75, 162, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-2);
  box-shadow: 0 0 15px rgba(118, 75, 162, 0.5);
}

/* Toast overrides */
.app-toast {
  background: #1a1a2e !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.app-toast-body {
  font-family: inherit !important;
  font-size: 14px !important;
  color: var(--light) !important;
}
