body, html, #app {
    user-select: none;
    margin: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

input {
    border-width: 2px;
    border-color: #000000;
}

#app {
    display: flex;
    flex-direction: column
}

canvas {
    width: 0;
    height: 0;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Global keyframes for render effects defined in EffectType */
@keyframes CROSS_FADE {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes FLY {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes OUT {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes IN {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
}

@keyframes CURTAIN {
    0% {
        transform-origin: top center;
        clip-path: inset(100% 0 0 0);
        transform: translateY(-4px);
        opacity: 0;
    }
    60% {
        clip-path: inset(0 0 0 0);
        transform: translateY(0) scaleY(1.02);
        opacity: 1;
    }
    80% {
        clip-path: inset(0 0 0 0);
        transform: translateY(0) scaleY(0.98);
    }
    100% {
        clip-path: inset(0 0 0 0);
        transform: translateY(0) scaleY(1);
    }
}

@keyframes TURN {
    from {
        transform-origin: center center;
        transform: rotateY(-90deg);
        opacity: 0;
    }
    to {
        transform-origin: center center;
        transform: rotateY(0deg);
        opacity: 1;
    }
}

button {
    border: none;
    background-color: buttonface;
}

/* -------------------------------------------------------------------------- */
/* Transition-driven switching (Alternating + Playlist)                        */
/* -------------------------------------------------------------------------- */

.lumids-switch-container {
    overflow: hidden;
}

.lumids-switch-container--turn {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.lumids-switch-container--playlist {
    position: relative;
}

.lumids-switch-container--playlist .lumids-switch-layer {
    position: absolute;
    inset: 0;
}

.lumids-switchable {
    transition-property: opacity, transform, clip-path, filter;
    transition-timing-function: var(--lumids-switch-ease, linear);
    transition-duration: 0ms;
    will-change: opacity, transform, clip-path, filter;
}

.lumids-switchable[data-switch="enter"],
.lumids-switchable[data-switch="active"] {
    transition-duration: var(--lumids-switch-in-ms, 0ms);
}

.lumids-switchable[data-switch="exit"] {
    transition-duration: var(--lumids-switch-out-ms, 0ms);
}

/* Base states */
.lumids-switchable[data-switch="enter"] {
    opacity: 0;
}

.lumids-switchable[data-switch="active"] {
    opacity: 1;
    transform: none;
    clip-path: inset(0 0 0 0);
    filter: none;
}

.lumids-switchable[data-switch="exit"] {
    opacity: 0;
}

/* Variants */
.lumids-switchable[data-variant="crossfade"][data-switch="enter"],
.lumids-switchable[data-variant="crossfade"][data-switch="exit"] {
    transform: none;
    clip-path: inset(0 0 0 0);
}

.lumids-switchable[data-variant="fly"][data-switch="enter"] {
    transform: translate3d(16px, 0, 0);
}

.lumids-switchable[data-variant="fly"][data-switch="exit"] {
    transform: translate3d(-16px, 0, 0);
}

.lumids-switchable[data-variant="turn"] {
    backface-visibility: hidden;
    transform-origin: center center;
}

.lumids-switchable[data-variant="turn"][data-switch="enter"] {
    transform: rotateY(-80deg);
}

.lumids-switchable[data-variant="turn"][data-switch="exit"] {
    transform: rotateY(80deg);
}

.lumids-switchable[data-variant="curtain"][data-switch="enter"] {
    clip-path: inset(100% 0 0 0);
}

.lumids-switchable[data-variant="curtain"][data-switch="exit"] {
    clip-path: inset(0 0 100% 0);
}

@media (prefers-reduced-motion: reduce) {
    .lumids-switchable {
        transition-duration: 1ms !important;
    }
}
video[data-v-9c4ffcc6] {
  pointer-events: none;
}

#app {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}


.input-box[data-v-55552f09] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 28px;
  width: 100%;
  padding: 16px 12px 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.input-box.is-disabled[data-v-55552f09] {
  pointer-events: none;
}
.input-box.is-disabled .input-shell[data-v-55552f09] {
  opacity: 0.55;
  filter: saturate(0.6);
}
.input-shell[data-v-55552f09] {
  width: min(640px, calc(100vw - 32px));
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 24, 33, 0.92), rgba(13, 14, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(5, 7, 14, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.input[data-v-55552f09] {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #f4f7ff;
  margin: 0;
  text-shadow: 0 6px 18px rgba(60, 105, 255, 0.25);
}
.input-hint[data-v-55552f09] {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(175, 190, 255, 0.7);
}
.input-box[data-v-55552f09] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.input[data-v-55552f09] {
  font-size: 30pt;
  color: #ffff;
  margin: 20px;
  padding: 20px;
  text-align: center;
}
.input-placeholder[data-v-55552f09] {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 500;
  color: rgba(160, 175, 230, 0.75);
  margin: 0;
}
.dropdown[data-v-55552f09] {
  width: min(640px, calc(100vw - 32px));
  border-radius: 20px;
  padding: 18px 20px 14px;
  background: rgba(18, 22, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 36px rgba(10, 16, 34, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}
.dropdown-title[data-v-55552f09] {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(145, 160, 230, 0.75);
  margin-bottom: 12px;
}
.dropdown-list[data-v-55552f09] {
  --item-height: 52px;
  --item-gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-height: calc((var(--item-height) * 4) + (var(--item-gap) * 3));
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 145, 255, 0.6) transparent;
}
.dropdown-list[data-v-55552f09]::-webkit-scrollbar {
  width: 8px;
}
.dropdown-list[data-v-55552f09]::-webkit-scrollbar-track {
  background: rgba(20, 24, 40, 0.6);
  border-radius: 999px;
}
.dropdown-list[data-v-55552f09]::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(120, 145, 255, 0.9), rgba(86, 110, 230, 0.7));
  border-radius: 999px;
}
.dropdown-item[data-v-55552f09] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(26, 30, 46, 0.6);
  border: 1px solid transparent;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.dropdown-item.selected[data-v-55552f09] {
  background: rgba(69, 92, 255, 0.2);
  border-color: rgba(112, 135, 255, 0.55);
  transform: translateY(-1px);
}
.item-name[data-v-55552f09] {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(232, 238, 255, 0.92);
}
.item-id[data-v-55552f09] {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(150, 170, 255, 0.8);
}

.skeleton-screen[data-v-d0359806] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9fafb;
  display: flex;
}
.skeleton[data-v-d0359806] {
  background: #98a3b1;
  position: relative;
  overflow: hidden;
}
.skeleton[data-v-d0359806]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  height: 100%;
  width: 150%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer-d0359806 1.5s infinite;
}
@keyframes shimmer-d0359806 {
0% { transform: translateX(0);
}
100% { transform: translateX(100%);
}
}

.status-bar[data-v-f891c6bf] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 9000;
  background: linear-gradient(135deg, rgba(22, 24, 33, 0.96), rgba(13, 14, 20, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 -6px 24px rgba(5, 7, 14, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans";
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.status-bar[data-v-f891c6bf]:hover {
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 -8px 30px rgba(5, 7, 14, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.status-bar[data-v-f891c6bf]:focus-visible {
  outline: 2px solid rgba(120, 145, 255, 0.8);
  outline-offset: -2px;
}

/* State-specific accents */
.state-healthy[data-v-f891c6bf] {
  border-top-color: rgba(46, 204, 113, 0.4);
}
.state-processing[data-v-f891c6bf] {
  border-top-color: rgba(241, 196, 15, 0.4);
}
.state-error[data-v-f891c6bf],
.state-offline[data-v-f891c6bf] {
  border-top-color: rgba(231, 76, 60, 0.5);
}

/* Content layout */
.status-content[data-v-f891c6bf] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  gap: 20px;
}

/* Primary status */
.status-primary[data-v-f891c6bf] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}
.status-indicator[data-v-f891c6bf] {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.status-indicator svg[data-v-f891c6bf] {
  width: 18px;
  height: 18px;
}
.indicator-healthy[data-v-f891c6bf] {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}
.indicator-processing[data-v-f891c6bf] {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.4);
}
.indicator-error[data-v-f891c6bf],
.indicator-offline[data-v-f891c6bf] {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.4);
}
.spin[data-v-f891c6bf] {
  animation: spin-f891c6bf 1.5s linear infinite;
}
@keyframes spin-f891c6bf {
from { transform: rotate(0deg);
}
to { transform: rotate(360deg);
}
}
.status-text[data-v-f891c6bf] {
  color: #f4f7ff;
  font-size: clamp(.8rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Chips */
.status-chips[data-v-f891c6bf] {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  justify-content: center;
}
.chip[data-v-f891c6bf] {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 30, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px 12px;
  flex-shrink: 0;
  transition: background 150ms ease, border-color 150ms ease;
}
.chip[data-v-f891c6bf]:hover {
  background: rgba(36, 40, 56, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
}
.chip-icon[data-v-f891c6bf] {
  width: 16px;
  height: 16px;
  color: rgba(175, 190, 255, 0.8);
  flex-shrink: 0;
}
.chip-label[data-v-f891c6bf] {
  color: rgba(232, 238, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.chip-success[data-v-f891c6bf] {
  background: rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}
.chip-success .chip-icon[data-v-f891c6bf] {
  color: #2ecc71;
}
.chip-warning[data-v-f891c6bf] {
  background: rgba(241, 196, 15, 0.15);
  border-color: rgba(241, 196, 15, 0.3);
}
.chip-warning .chip-icon[data-v-f891c6bf] {
  color: #f1c40f;
}
.chip-error[data-v-f891c6bf] {
  background: rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.3);
}
.chip-error .chip-icon[data-v-f891c6bf] {
  color: #e74c3c;
}

/* Device chip - allow full name with scroll if needed */
.device-chip[data-v-f891c6bf] {
  max-width: 200px;
}
.device-chip .chip-label[data-v-f891c6bf] {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Settings button */
.settings-button[data-v-f891c6bf] {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(69, 92, 255, 0.2), rgba(86, 110, 230, 0.15));
  border: 1px solid rgba(112, 135, 255, 0.4);
  border-radius: 12px;
  padding: 10px 16px;
  color: #f4f7ff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  flex-shrink: 0;
}
.settings-button[data-v-f891c6bf]:hover {
  background: linear-gradient(135deg, rgba(69, 92, 255, 0.35), rgba(86, 110, 230, 0.25));
  border-color: rgba(120, 145, 255, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(69, 92, 255, 0.25);
}
.settings-button[data-v-f891c6bf]:active {
  transform: translateY(0);
}
.gear-icon[data-v-f891c6bf] {
  width: 20px;
  height: 20px;
  color: rgba(150, 170, 255, 0.9);
}
.settings-label[data-v-f891c6bf] {
  letter-spacing: 0.04em;
}
.chevron-icon[data-v-f891c6bf] {
  width: 16px;
  height: 16px;
  color: rgba(150, 170, 255, 0.7);
}

/* Slide transition */
.statusbar-slide-enter-active[data-v-f891c6bf],
.statusbar-slide-leave-active[data-v-f891c6bf] {
  transition: transform 300ms ease, opacity 300ms ease;
}
.statusbar-slide-enter-from[data-v-f891c6bf],
.statusbar-slide-leave-to[data-v-f891c6bf] {
  transform: translateY(100%);
  opacity: 0;
}

/* Responsive: hide chips progressively */
@media (max-width: 900px) {
.hide-medium[data-v-f891c6bf] {
    display: none;
}
}
@media (max-width: 600px) {
.hide-narrow[data-v-f891c6bf] {
    display: none;
}
.settings-label[data-v-f891c6bf] {
    display: none;
}
.settings-button[data-v-f891c6bf] {
    padding: 10px 12px;
}
.chevron-icon[data-v-f891c6bf] {
    display: none;
}
}
@media (max-width: 480px) {
.status-bar[data-v-f891c6bf] {
    height: 30px;
}
.status-chips[data-v-f891c6bf] {
    display: none;
}
.status-content[data-v-f891c6bf] {
    padding: 0 12px;
    gap: 12px;
}
.status-indicator[data-v-f891c6bf] {
    width: 28px;
    height: 28px;
}
.status-indicator svg[data-v-f891c6bf] {
    width: 14px;
    height: 14px;
}
}

.disconnect-policy-overlay[data-v-2134e2aa] {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.disconnect-policy-content[data-v-2134e2aa] {
  max-width: 80vw;
  padding: 24px 32px;
  color: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-weight: 600;
  font-size: 50pt;
  line-height: 1.35;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  background: #000000;
  border-radius: .25em;
  overflow: hidden;
}
.disconnect-policy-content img[data-v-2134e2aa] {
  position: absolute;
  width: auto;
  height: 100vh;
  display: block;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.disconnect-policy-text[data-v-2134e2aa] {
  white-space: pre-wrap;
}

.settings-overlay[data-v-4f553209] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.settings-modal[data-v-4f553209] {
  width: min(920px, 95vw);
  max-height: 90vh;
  overflow: hidden;
  background: #111418;
  color: #e7e9ee;
  border: 1px solid #2a2f3a;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  padding: 20px 20px 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans";
  display: flex;
  flex-direction: column;
}
.settings-header[data-v-4f553209] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.settings-header h2[data-v-4f553209] {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.settings-grid[data-v-4f553209] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  flex: 1 1 auto;
  overflow: hidden;
}
.settings-section[data-v-4f553209] {
  background: #151a20;
  border: 1px solid #262b35;
  border-radius: 10px;
  padding: 12px;
  min-height: 0;
}
.settings-section h3[data-v-4f553209] {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9aa3b2;
}
.settings-row[data-v-4f553209] {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0;
  font-size: 13px;
}
.settings-row .label[data-v-4f553209] {
  color: #a7b0c0;
}
.settings-row .value[data-v-4f553209] {
  color: #f2f4f8;
  text-align: right;
  word-break: break-word;
}
.value-scroll[data-v-4f553209] {
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  text-overflow: clip;
}
.value-scroll[data-v-4f553209]::-webkit-scrollbar {
  height: 6px;
}
.value-scroll[data-v-4f553209]::-webkit-scrollbar-track {
  background: #1b2029;
}
.value-scroll[data-v-4f553209]::-webkit-scrollbar-thumb {
  background: #3b424f;
  border-radius: 999px;
}
.value-scroll[data-v-4f553209] {
  scrollbar-width: thin;
  scrollbar-color: #3b424f #1b2029;
}
.settings-subtitle[data-v-4f553209] {
  margin: 6px 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7e8797;
}
.settings-divider[data-v-4f553209] {
  height: 1px;
  background: #262b35;
  margin: 8px 0;
}
.actions[data-v-4f553209] {
  margin-top: 16px;
}
.settings-actions[data-v-4f553209] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.settings-hint[data-v-4f553209] {
  margin-top: 10px;
  font-size: 12px;
  color: #b4bccb;
}
.settings-list[data-v-4f553209] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px;
  max-height: 140px;
  overflow: auto;
}
.settings-list[data-v-4f553209]::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
.settings-list[data-v-4f553209]::-webkit-scrollbar-track {
  background: #1b2029;
}
.settings-list[data-v-4f553209]::-webkit-scrollbar-thumb {
  background: #3b424f;
  border-radius: 999px;
}
.settings-list[data-v-4f553209] {
  scrollbar-width: thin;
  scrollbar-color: #3b424f #1b2029;
}
.pill[data-v-4f553209] {
  background: #202632;
  border: 1px solid #303848;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  color: #d4d9e5;
}
.pill.muted[data-v-4f553209] {
  color: #9aa3b2;
  border-color: #2b3240;
}
.btn[data-v-4f553209] {
  background: #2b3240;
  color: #eef1f6;
  border: 1px solid #3c4556;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
}
.btn[data-v-4f553209]:hover {
  background: #353f52;
}
.btn.ghost[data-v-4f553209] {
  background: transparent;
}
.btn.danger[data-v-4f553209] {
  border-color: #78383c;
  color: #ffb4b4;
  background: #3a2123;
}
.btn.danger[data-v-4f553209]:hover {
  background: #4a2a2e;
}

#app {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.display-root {
  width: 100%;
  height: 100%;
  position: relative;
}
.layout-surface {
  width: 100%;
  height: 100%;
  transition: opacity 120ms ease;
}
.reveal-skeleton {
  position: absolute;
  inset: 0;
}


.error-bar[data-v-3661b6c8] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #b00020; /* material error */
  color: #ffffff;
  padding: 8px 12px;
  text-align: center;
  font-weight: 600;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.error-text[data-v-3661b6c8] {
  display: inline-block;
  line-height: 1.2;
}

body {
  margin: 0;
  background: #e9f3ff;
  color: #0f172a;
  font-family: "Inter", "SF Pro Text", "SF Pro Display", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
}
.auth-page[data-v-8cc397cd] {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(233, 243, 255, 0.9)),
    linear-gradient(180deg, #dfeeff 0%, #f5f9ff 60%, #ffffff 100%);
}
.auth-card[data-v-8cc397cd] {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.12),
    0 8px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: grid;
  gap: 22px;
  text-align: center;
  backdrop-filter: blur(16px);
}
.auth-form[data-v-8cc397cd] {
  display: grid;
  gap: 18px;
}
.auth-icon[data-v-8cc397cd] {
  width: 220px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.auth-logo[data-v-8cc397cd] {
  width: 200px;
  height: 64px;
  object-fit: contain;
}
.auth-header h1[data-v-8cc397cd] {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.auth-header p[data-v-8cc397cd] {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}
.field[data-v-8cc397cd] {
  display: grid;
  gap: 8px;
  text-align: left;
}
.field-label[data-v-8cc397cd] {
  font-size: 12px;
  font-weight: 500;
  color: #475569;
}
.field-hint[data-v-8cc397cd] {
  font-size: 11px;
  color: #64748b;
}
.field-error[data-v-8cc397cd] {
  font-size: 11px;
  color: #b91c1c;
}
.field-input[data-v-8cc397cd] {
  height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 12px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field-inline[data-v-8cc397cd] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.field-input-prefix[data-v-8cc397cd] {
  flex: 1;
}
.field-suffix[data-v-8cc397cd] {
  font-size: 14px;
  color: #475569;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  white-space: nowrap;
}
.field-input[data-v-8cc397cd]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}
.primary-button[data-v-8cc397cd] {
  height: 46px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #b00020, #a5323e);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.primary-button[data-v-8cc397cd]:disabled {
  background: #64748b;
}
.primary-button[data-v-8cc397cd]:focus-visible {
  outline: none;
}
.primary-button[data-v-8cc397cd]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px #b34751;
}

div[data-v-65c95b10] {
    cursor: pointer;
}

div[data-v-409021db] {
  cursor: pointer;
}
button[data-v-409021db]:focus {
  background: var(--v1e5b4fd8) !important;
  color: var(--v92fb27ae) !important;
}
button[data-v-409021db]:disabled {
  background: var(--v97aa4560) !important;
  color: var(--v79daf165) !important;
}
button[data-v-409021db]:active {
  background: var(--v9a94d4ac) !important;
  color: var(--v7865a9bf) !important;
}
button p[data-v-409021db] {
  margin: 0;
  margin-block: 0;
  padding: 0;
  left: 0;
  right: 0;
  top: 0;
  position: relative;
  margin-inline-start: -6px;
}


.ticker[data-v-5f33654e] {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ticker__mask[data-v-5f33654e] {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ticker__track[data-v-5f33654e] {
  --ticker-start: 0px;
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: var(--ticker-delay, 0s);
}
.ticker__track--start-empty[data-v-5f33654e] {
  --ticker-start: var(--container-size, 100%);
}
.ticker__track--horizontal[data-v-5f33654e] {
  flex-direction: row;
  animation-name: ticker-left-5f33654e;
  animation-duration: var(--ticker-duration, 10s);
}
.ticker__track--vertical[data-v-5f33654e] {
  flex-direction: column;
  animation-name: ticker-up-5f33654e;
  animation-duration: var(--ticker-duration, 10s);
}
.ticker__group[data-v-5f33654e] {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: var(--pixels-shift, 0px);
}
.ticker__track--horizontal .ticker__group[data-v-5f33654e] {
  margin-right: var(--pixels-shift, 0px);
}
.ticker__track--vertical .ticker__group[data-v-5f33654e] {
  margin-bottom: var(--pixels-shift, 0px);
}
.ticker__track--horizontal .ticker__group[data-v-5f33654e] {
  flex-direction: row;
}
.ticker__track--vertical .ticker__group[data-v-5f33654e] {
  flex-direction: column;
}
.ticker__unit[data-v-5f33654e] {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 2rem;
}
.ticker__track--horizontal .ticker__unit[data-v-5f33654e] {
  width: var(--unit-size, auto);
}
.ticker__track--vertical .ticker__unit[data-v-5f33654e] {
  height: var(--unit-size, auto);
}
.ticker__html[data-v-5f33654e] > * {
  display: inline-block;
  margin-right: 2rem;
}

/* keyframes */
@keyframes ticker-left-5f33654e {
to {
    transform: translateX(calc(-1 * var(--group-size, 0px)));
}
from {
    transform: translateX(var(--ticker-start, 0px));
}
}
@keyframes ticker-up-5f33654e {
to {
    transform: translateY(calc(-1 * var(--group-size, 0px)));
}
from {
    transform: translateY(var(--ticker-start, 0px));
}
}

input[data-v-8f805c5d]:focus {
  background: var(--v599faf81) !important;
  color: var(--v1f4fc396) !important;
}
input[data-v-8f805c5d]:disabled {
  background: var(--v8063377a) !important;
  color: var(--f5030f50) !important;
}
input[data-v-8f805c5d]:active {
  background: var(--v68483752) !important;
  color: var(--dce80f28) !important;
}
