.not-found-container {
  --nf-bg-start: #f3f6f9;
  --nf-bg-end: #dde4ed;
  --nf-text-main: #333;
  --nf-text-sub: #666;
  --nf-content-bg: #fff6;
  --nf-content-border: #fff9;
  --nf-error-code: #c62828;
  --nf-terminal-bg: #0000000d;
  --nf-terminal-border: #666;
  --nf-log-line: #555;
  --nf-btn-border: #333;
  --nf-btn-text: #333;
  --nf-btn-hover-bg: #333;
  --nf-btn-hover-text: #fff;
  --nf-grid-color: #00000008;
  --nf-shadow: #0000000d;
}
html.dark .not-found-container {
  --nf-bg-start: #1a1a1a;
  --nf-bg-end: #0d0d0d;
  --nf-text-main: #e0e0e0;
  --nf-text-sub: #aaa;
  --nf-content-bg: #0006;
  --nf-content-border: #ffffff1a;
  --nf-error-code: #ff5252;
  --nf-terminal-bg: #ffffff0d;
  --nf-terminal-border: #888;
  --nf-log-line: #ccc;
  --nf-btn-border: #e0e0e0;
  --nf-btn-text: #e0e0e0;
  --nf-btn-hover-bg: #e0e0e0;
  --nf-btn-hover-text: #121212;
  --nf-grid-color: #ffffff08;
  --nf-shadow: #00000080;
}


.bg-body[data-v-4fde5d92] {
  background: var(--background-gradient, var(--background-color));
  width: 100vw;
  height: 100vh;
  font-family: var(--font-ui);
  color: var(--text-color);
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 30px;
  display: flex;
  overflow: hidden;
}
.not-found-container[data-v-4fde5d92] {
  background: radial-gradient(circle at 50% 50%, var(--nf-bg-start) 0%, var(--nf-bg-end) 100%);
  width: 100vw;
  height: 100%;
  color: var(--nf-text-main);
  justify-content: center;
  align-items: center;
  font-family: Courier New, monospace;
  display: flex;
  position: relative;
  overflow: hidden;
}
.content[data-v-4fde5d92] {
  z-index: 2;
  text-align: center;
  background: var(--nf-content-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--nf-content-border);
  box-shadow: 0 10px 30px var(--nf-shadow);
  border-radius: 4px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
}
.error-code[data-v-4fde5d92] {
  color: var(--nf-error-code);
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  position: relative;
}
.glitch[data-v-4fde5d92] {
  position: relative;
}
.glitch[data-v-4fde5d92]:before, .glitch[data-v-4fde5d92]:after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.glitch[data-v-4fde5d92]:before {
  text-shadow: -1px 0 #0ff;
  clip: rect(24px, 550px, 90px, 0);
  animation: 3s linear infinite alternate-reverse glitch-anim-2-4fde5d92;
  left: 2px;
}
.glitch[data-v-4fde5d92]:after {
  text-shadow: -1px 0 #f0f;
  clip: rect(85px, 550px, 140px, 0);
  animation: 2.5s linear infinite alternate-reverse glitch-anim-4fde5d92;
  left: -2px;
}
@keyframes glitch-anim-4fde5d92 {
0% {
    clip: rect(11px, 9999px, 81px, 0);
}
20% {
    clip: rect(96px, 9999px, 2px, 0);
}
40% {
    clip: rect(25px, 9999px, 94px, 0);
}
60% {
    clip: rect(61px, 9999px, 34px, 0);
}
80% {
    clip: rect(5px, 9999px, 66px, 0);
}
100% {
    clip: rect(84px, 9999px, 11px, 0);
}
}
@keyframes glitch-anim-2-4fde5d92 {
0% {
    clip: rect(65px, 9999px, 100px, 0);
}
20% {
    clip: rect(32px, 9999px, 11px, 0);
}
40% {
    clip: rect(8px, 9999px, 69px, 0);
}
60% {
    clip: rect(54px, 9999px, 24px, 0);
}
80% {
    clip: rect(92px, 9999px, 4px, 0);
}
100% {
    clip: rect(21px, 9999px, 78px, 0);
}
}
.error-title[data-v-4fde5d92] {
  letter-spacing: 4px;
  color: var(--nf-text-main);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
.error-desc[data-v-4fde5d92] {
  color: var(--nf-text-sub);
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
}
.terminal-logs[data-v-4fde5d92] {
  text-align: left;
  background: var(--nf-terminal-bg);
  border-left: 2px solid var(--nf-terminal-border);
  margin-bottom: 30px;
  padding: 15px;
  font-size: 11px;
}
.log-line[data-v-4fde5d92] {
  color: var(--nf-log-line);
  margin-bottom: 4px;
}
.status-ok[data-v-4fde5d92] {
  color: #2e7d32;
  font-weight: bold;
}
.status-fail[data-v-4fde5d92] {
  color: #c62828;
  font-weight: bold;
}
.btn-return[data-v-4fde5d92] {
  border: 1px solid var(--nf-btn-border);
  color: var(--nf-btn-text);
  cursor: pointer;
  background: none;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  transition: all .3s;
  display: inline-flex;
}
.btn-return[data-v-4fde5d92]:hover {
  background: var(--nf-btn-hover-bg);
  color: var(--nf-btn-hover-text);
}
.deco-grid[data-v-4fde5d92] {
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--nf-grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--nf-grid-color) 1px, transparent 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#000 40%, #0000 100%);
}


.app-shell[data-v-f30d5b7e] {
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  color: var(--text-color);
  font-family: var(--font-ui);
  background-image: linear-gradient(147deg, #fff0e8 0%, #feebeb 11.83%, #d9e8fb 30.46%, #e1ebfb 100%);
  padding-top: 30px;
  display: flex;
  overflow: hidden;
}
.app-shell--web[data-v-f30d5b7e] {
  padding-top: 0;
}
.left-sidebar[data-v-f30d5b7e] {
  background: #ffffff75;
  flex-direction: column;
  flex: 0 0 96px;
  gap: 40px;
  padding-top: 34px;
  display: flex;
  position: relative;
}
.sidebar-item[data-v-f30d5b7e] {
  color: #5f6375;
  cursor: pointer;
  background: none;
  border: 0;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0;
  display: flex;
}
.sidebar-item.active[data-v-f30d5b7e] {
  color: #000;
  font-weight: 700;
}
.sidebar-icon[data-v-f30d5b7e] {
  object-fit: contain;
  width: 26px;
  height: 26px;
}
.sidebar-label[data-v-f30d5b7e] {
  font-size: 14px;
}
.sbml-entry[data-v-f30d5b7e] {
  cursor: pointer;
  background: none;
  border: 0;
  width: 100%;
  padding: 0;
  position: absolute;
  bottom: 25px;
  left: 0;
}
.sbml-entry img[data-v-f30d5b7e] {
  width: 80px;
  height: auto;
  margin: 0 auto;
}
.content-wrapper[data-v-f30d5b7e] {
  z-index: 2;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  position: relative;
  overflow-y: auto;
}
.fade-enter-active[data-v-f30d5b7e], .fade-leave-active[data-v-f30d5b7e] {
  transition: opacity .3s;
}
.fade-enter-from[data-v-f30d5b7e], .fade-leave-to[data-v-f30d5b7e] {
  opacity: 0;
}


.bg-body[data-v-08d0f4c6] {
  width: 100vw;
  height: 100vh;
  padding-top: 30px;
}
.bg-body.nopaading[data-v-08d0f4c6] {
  padding-top: 0;
}
.bg-body.nopaading .back-btn[data-v-08d0f4c6] {
  margin-top: 10px;
  margin-left: 10px;
}
.back-btn[data-v-08d0f4c6] {
  z-index: 100000;
  margin-top: -23px;
  margin-left: 10px;
  position: absolute;
}


.browser {
  --tab-bar-bg: #dee1e6;
  --tab-active-bg: #fff;
  --tab-hover-bg: #edeff2;
  --tab-text-active: #3c4043;
  --tab-text-normal: #5f6368;
  --tab-separator: #aeb1b5;
}
html.dark .browser {
  --tab-bar-bg: #000;
  --tab-active-bg: #323639;
  --tab-hover-bg: #202124;
  --tab-text-active: #e8eaed;
  --tab-text-normal: #9aa0a6;
  --tab-separator: #4a4c50;
}


.tabbar[data-v-6b644552] {
  background-color: var(--tab-bar-bg);
  user-select: none;
  width: 100%;
  height: 40px;
  color: var(--text-color);
  align-items: flex-end;
  padding-top: 8px;
  transition: background-color .2s;
  display: flex;
  position: relative;
}
.use-transition .spacer[data-v-6b644552] {
  transition: width .2s ease-in-out;
}
.spacer[data-v-6b644552] {
  width: 0;
}
.spacer.active[data-v-6b644552] {
  width: 200px;
}
.tab-item[data-v-6b644552] {
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  width: 200px;
  height: 32px;
  color: var(--tab-text-normal);
  border-right: none;
  border-radius: 8px 8px 0 0;
  margin-right: -1px;
  padding: 0 30px;
  font-size: 12px;
  line-height: 32px;
  transition: background-color .2s, color .2s;
  position: relative;
  overflow: visible;
}
.tab-item[data-v-6b644552]:after {
  content: "";
  background-color: var(--tab-separator);
  opacity: 1;
  width: 1px;
  height: 50%;
  transition: opacity .2s;
  position: absolute;
  top: 25%;
  right: 0;
}
.tab-item.active[data-v-6b644552]:after, .tab-item[data-v-6b644552]:hover:after {
  opacity: 0;
}
.tab-item.active[data-v-6b644552] {
  background-color: var(--tab-active-bg);
  color: var(--tab-text-active);
  z-index: 10;
  box-shadow: 0 -1px 4px #0000000d;
}
.tab-item[data-v-6b644552]:not(.active):hover {
  background-color: var(--tab-hover-bg);
}
.tab-item.dragging[data-v-6b644552] {
  background-color: var(--tab-active-bg);
  z-index: 20;
  border-radius: 8px;
  position: absolute;
  box-shadow: 0 4px 10px #0003;
}
.close-btn[data-v-6b644552] {
  opacity: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 14px;
  transition: opacity .2s, background-color .2s;
  display: flex;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.tab-item:hover .close-btn[data-v-6b644552], .tab-item.active .close-btn[data-v-6b644552] {
  opacity: 1;
}
.close-btn[data-v-6b644552]:hover {
  background-color: var(--border-light);
  color: var(--error);
}
.add-btn[data-v-6b644552] {
  cursor: pointer;
  width: 28px;
  min-width: 28px;
  height: 28px;
  color: var(--text-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 5px 4px;
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  transition: background-color .2s;
  display: flex;
}
.add-btn[data-v-6b644552]:hover {
  background-color: var(--border-light);
}
.search-bar[data-v-6b644552] {
  background-color: var(--tab-active-bg);
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  height: 44px;
  padding: 0 10px;
  display: flex;
  box-shadow: 0 2px 4px #00000005;
}
.search-input[data-v-6b644552] {
  background-color: var(--border-light);
  width: 100%;
  height: 32px;
  color: var(--text-color);
  border: 1px solid #0000;
  border-radius: 16px;
  outline: none;
  padding: 0 16px;
  font-size: 13px;
  transition: background-color .2s, border-color .2s, box-shadow .2s;
}
.search-input[data-v-6b644552]:focus {
  background-color: var(--bg-start);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px #409eff33;
}


.print-page[data-v-316eb79c] {
  flex-direction: column;
  height: 100%;
  display: flex;
}
.tool-header[data-v-316eb79c] {
  border-bottom: 1px solid var(--border-light);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}
.header-left[data-v-316eb79c] {
  align-items: center;
  gap: 15px;
  display: flex;
}
.tool-title[data-v-316eb79c] {
  font-family: var(--font-code);
  font-size: 18px;
  font-weight: bold;
}
.content-container[data-v-316eb79c] {
  flex: 1;
  gap: 20px;
  min-height: 0;
  display: flex;
}
.content-column[data-v-316eb79c] {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}
.content-card[data-v-316eb79c] {
  flex-direction: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.preview-area[data-v-316eb79c] {
  background: #00000005;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 20px;
  display: flex;
}
.preview-box[data-v-316eb79c] {
  background: #ff4d4f;
  border-radius: 4px;
  width: 50px;
  height: 50px;
}


.fade-enter-active, .fade-leave-active {
  transition: opacity .28s;
}

.fade-enter, .fade-leave-active {
  opacity: 0;
}

.breadcrumb-enter-active, .breadcrumb-leave-active {
  transition: all .5s;
}

.breadcrumb-enter, .breadcrumb-leave-active {
  opacity: 0;
  transform: translateX(20px);
}

.breadcrumb-move {
  transition: all .5s;
}

.breadcrumb-leave-active {
  position: absolute;
}

:root {
  --background-color: #f2f3f5;
  --text-color: #333;
  --primary-color: #409eff;
  --secondary-color: #555;
  --main-view-bg-color: #f9f9fc;
  --glass: #ffffffa6;
  --glass-strong: #f5f5f5d9;
  --border-light: #00000014;
  --card-bg: #fff9;
  --font-ui: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-code: "Courier New", monospace;
  --success: #2e7d32;
  --error: #c62828;
  --primary: #1a1a1a;
  --secondary: #555;
  --bg-start: #eef2f5;
  --bg-end: #dbe4ed;
}

html.dark {
  --background-color: #050505;
  --background-gradient: linear-gradient(135deg, #111 0%, #050505 100%);
  --text-color: #e0e0e0;
  --primary-color: #00e676;
  --primary-dim: #00a854;
  --main-view-bg-color: transparent;
  --glass: #000000b3;
  --glass-strong: #141414e6;
  --border-light: #ffffff1a;
  --card-bg: #1e1e1e99;
  --primary: #fff;
  --secondary: #a0a0a0;
  --glow-text: 0 0 10px #00e67666;
  --glow-component: drop-shadow(0 0 5px #00e67666);
  --bg-start: #1a1a1a;
  --bg-end: #0d0d0d;
}

body {
  background: var(--background-gradient, var(--background-color));
  color: var(--text-color);
  font-family: var(--font-ui);
  margin: 0;
  transition: background-color .3s, color .3s;
}

html, body, #app {
  width: 100%;
  height: 100%;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}

html {
  box-sizing: border-box;
}

html ::-webkit-scrollbar {
  background-color: none;
  width: 6px;
  height: 6px;
}

html ::-webkit-scrollbar-track {
  background-color: none;
}

html ::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

*, :before, :after {
  box-sizing: inherit;
}

div:focus, a:focus, a:active {
  outline: none;
}

a, a:focus, a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.clearfix:after {
  visibility: hidden;
  content: " ";
  clear: both;
  height: 0;
  font-size: 0;
  display: block;
}

.app-main {
  min-height: 100%;
}

.app-container {
  padding: 20px;
}

.n-message-container.n-message-container--top {
  top: 35px;
}

.window-title[data-v-e227a812] {
  -webkit-app-region: drag;
  z-index: 9998;
  background-color: #0000;
  align-items: center;
  width: 100%;
  height: 32px;
  line-height: 32px;
  display: flex;
  position: fixed;
  top: 0;
}
.mac-traffic-lights-placeholder[data-v-e227a812] {
  -webkit-app-region: drag;
  width: 70px;
  height: 100%;
}
.icon-logo[data-v-e227a812] {
  vertical-align: -.15em;
  fill: currentColor;
  width: 1em;
  height: 1em;
  overflow: hidden;
}
.title[data-v-e227a812] {
  text-align: center;
  color: var(--text-color);
  font-family: var(--font-code, "Courier New", monospace);
  letter-spacing: 2px;
  flex: 1;
  font-size: 12px;
  font-weight: bold;
}
.logo[data-v-e227a812] {
  color: var(--text-color);
  margin: 0 10px;
}
.controls-container[data-v-e227a812] {
  text-align: center;
  z-index: 3000;
  -webkit-app-region: no-drag;
  flex-grow: 0;
  flex-shrink: 0;
  width: 138px;
  height: 100%;
  margin-left: auto;
  display: flex;
  position: relative;
}
.windows-icon-bg[data-v-e227a812] {
  -webkit-app-region: no-drag;
  width: 46px;
  height: 100%;
  color: var(--text-color);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background-color .2s;
  display: flex;
}
.icon-size[data-v-e227a812] {
  fill: currentColor;
  width: 12px;
  height: 12px;
}
.windows-icon-bg[data-v-e227a812]:hover {
  background-color: var(--border-light);
}
.close-icon[data-v-e227a812]:hover {
  color: #fff;
  background-color: #c42b1c;
}


.login-dialog-overlay[data-v-5cdc50d6] {
  z-index: 1000;
  background: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}
.login-dialog[data-v-5cdc50d6] {
  background-color: #fff;
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 12px;
  width: 470px;
  max-width: 90vw;
  padding: 16px 43px 43px;
}
.login-dialog h1[data-v-5cdc50d6] {
  color: #313131;
  text-align: center;
  margin: 8px 0 28px;
  font-size: 26px;
  font-weight: 600;
}
.icon-close-wrapper[data-v-5cdc50d6] {
  cursor: pointer;
  background: none;
  border: 0;
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding: 4px;
  display: block;
}
.icon-close-wrapper img[data-v-5cdc50d6] {
  width: 21px;
  height: 21px;
}
.method-tabs[data-v-5cdc50d6], .role-tabs[data-v-5cdc50d6] {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  display: grid;
}
.method-tabs button[data-v-5cdc50d6], .role-tabs button[data-v-5cdc50d6] {
  color: #666;
  cursor: pointer;
  background: #f5f6f8;
  border: 0;
  border-radius: 8px;
  padding: 10px;
}
.method-tabs button.active[data-v-5cdc50d6], .role-tabs button.active[data-v-5cdc50d6] {
  color: #fff;
  background: #313131;
}
.role-tabs[data-v-5cdc50d6] {
  margin-bottom: 14px;
}
.login-form .form-group[data-v-5cdc50d6] {
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
  align-items: center;
  width: 100%;
  height: 53px;
  margin-bottom: 20px;
  display: flex;
}
.login-form .form-group.bordered[data-v-5cdc50d6] {
  border: 1px solid #e1e1e1;
}
.login-form .form-group[data-v-5cdc50d6]:focus-within {
  border-color: #313131;
}
.login-form .form-group input[data-v-5cdc50d6] {
  box-sizing: border-box;
  background: none;
  border: 0;
  border-radius: 5px;
  outline: none;
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 18px;
  font-size: 16px;
}
.phone-prefix[data-v-5cdc50d6] {
  color: #313131;
  text-align: center;
  border-right: 1px solid #e1e1e1;
  width: 70px;
}
.code-row[data-v-5cdc50d6] {
  gap: 12px;
}
.code-row input[data-v-5cdc50d6] {
  border: 1px solid #e1e1e1 !important;
}
.code-btn[data-v-5cdc50d6] {
  color: #313131;
  cursor: pointer;
  background: #f2f3f5;
  border: 0;
  border-radius: 5px;
  width: 120px;
  height: 53px;
}
.code-btn[data-v-5cdc50d6]:disabled {
  color: #aaa;
  cursor: not-allowed;
}
.btn-login[data-v-5cdc50d6] {
  color: #fff;
  cursor: pointer;
  background: #313131;
  border: 0;
  border-radius: 5px;
  width: 100%;
  height: 53px;
  font-size: 18px;
  font-weight: 600;
}
.btn-login[data-v-5cdc50d6]:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.login-dialog-overlay[data-v-5cdc50d6] {
  backdrop-filter: blur(8px);
  background: #232b3b6b;
  padding: 24px;
}
.login-dialog[data-v-5cdc50d6] {
  box-sizing: border-box;
  background: linear-gradient(135deg, #fffefb 0%, #fff 58%, #fff9ec 100%);
  border: 1px solid #ffffffe0;
  border-radius: 24px;
  width: 520px;
  max-width: 100%;
  padding: 36px 52px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px #232b3b47;
}
.login-dialog[data-v-5cdc50d6]:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #ffb83638, #ffb83600);
  width: 260px;
  height: 260px;
  position: absolute;
  top: -110px;
  right: -80px;
}
.icon-close-wrapper[data-v-5cdc50d6] {
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 6px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.login-heading[data-v-5cdc50d6] {
  text-align: center;
  margin: 0 0 30px;
  position: relative;
}
.login-heading h1[data-v-5cdc50d6] {
  color: #171c32;
  letter-spacing: .02em;
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 700;
}
.field-label[data-v-5cdc50d6] {
  color: #566078;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  display: block;
}
.login-form .form-group[data-v-5cdc50d6] {
  border-radius: 16px;
  height: 58px;
  margin-bottom: 22px;
}
.login-form .form-group.bordered[data-v-5cdc50d6] {
  border-color: #e4e8f1;
}
.login-form .form-group[data-v-5cdc50d6]:focus-within {
  border-color: #f5a21a;
  box-shadow: 0 0 0 3px #f5a21a1f;
}
.login-form .form-group input[data-v-5cdc50d6] {
  color: #20263b;
  border-radius: 16px;
  font-size: 17px;
}
.phone-row[data-v-5cdc50d6], .code-row[data-v-5cdc50d6] {
  gap: 14px;
  margin-bottom: 22px;
  display: flex;
}
.country-code[data-v-5cdc50d6] {
  color: #222a42;
  box-sizing: border-box;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e4e8f1;
  border-radius: 16px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 58px;
  padding: 0 18px 0 22px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
}
.country-code .country-arrow[data-v-5cdc50d6] {
  color: #9aa3b6;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  width: 18px;
  height: 18px;
}
.country-picker[data-v-5cdc50d6] {
  z-index: 4;
  flex: 0 0 120px;
  width: 120px;
  height: 58px;
  position: relative;
}
.country-menu[data-v-5cdc50d6] {
  background: #fffffffa;
  border: 1px solid #e0e6f1;
  border-radius: 18px;
  width: 270px;
  max-height: 430px;
  padding: 16px 0 10px;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  overflow-y: auto;
  box-shadow: 0 16px 32px #27324929;
}
.country-menu p[data-v-5cdc50d6] {
  color: #a0a9ba;
  margin: 0;
  padding: 0 20px 10px;
  font-size: 14px;
  font-weight: 600;
}
.country-menu button[data-v-5cdc50d6] {
  color: #566078;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  width: 100%;
  height: 47px;
  padding: 0 20px;
  font-size: 17px;
  display: flex;
}
.country-menu button[data-v-5cdc50d6]:hover, .country-menu button.selected[data-v-5cdc50d6] {
  background: #fff8e9;
}
.country-menu strong[data-v-5cdc50d6] {
  color: #4f5870;
  width: 56px;
  font-size: 17px;
  font-weight: 600;
}
.country-flag[data-v-5cdc50d6] {
  width: 29px;
  margin: 0 !important;
  font-size: 18px !important;
  transform: none !important;
}
.country-name[data-v-5cdc50d6] {
  color: #566078;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 !important;
  font-size: 17px !important;
  transform: none !important;
}
.country-menu i[data-v-5cdc50d6] {
  color: #f09a12;
  margin-left: auto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.phone-input[data-v-5cdc50d6] {
  flex: 1;
  margin-bottom: 0 !important;
}
.input-icon[data-v-5cdc50d6] {
  color: #aab3c5;
  width: 26px;
  margin-left: 18px;
  font-size: 23px;
  line-height: 1;
}
.phone-icon[data-v-5cdc50d6] {
  color: #a7b1c5;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  flex: none;
  width: 27px;
  height: 27px;
}
.code-icon[data-v-5cdc50d6] {
  color: #a7b1c5;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  flex: none;
  width: 25px;
  height: 25px;
}
.code-row .code-input[data-v-5cdc50d6] {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e4e8f1;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  min-width: 0;
  height: 58px;
  display: flex;
}
.code-row .code-input[data-v-5cdc50d6]:focus-within {
  border-color: #f5a21a;
  box-shadow: 0 0 0 3px #f5a21a1f;
}
.code-row input[data-v-5cdc50d6] {
  color: #20263b;
  appearance: none;
  background: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 16px;
  font-size: 17px;
  box-shadow: none !important;
  border: 0 !important;
}
.code-btn[data-v-5cdc50d6] {
  color: #fff;
  background: linear-gradient(110deg, #f4a014, #ffb11b);
  border-radius: 16px;
  width: 150px;
  height: 58px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 18px #f4a01433;
}
.code-btn[data-v-5cdc50d6]:disabled {
  color: #fff;
  opacity: .48;
}
.btn-login[data-v-5cdc50d6] {
  background: linear-gradient(110deg, #f49f13, #ffb21b);
  border-radius: 18px;
  height: 64px;
  font-size: 20px;
  box-shadow: 0 10px 24px #f4a01440;
}
.password-toggle[data-v-5cdc50d6] {
  color: #a7b1c5;
  cursor: pointer;
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 100%;
  padding: 0;
  display: flex;
}
.password-toggle-icon[data-v-5cdc50d6] {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9px;
  width: 27px;
  height: 27px;
}
.password-toggle-slash[data-v-5cdc50d6] {
  stroke-width: 2px;
}
.organization-selector[data-v-5cdc50d6] {
  position: relative;
}
.organization-selector > p[data-v-5cdc50d6] {
  color: #7d879a;
  text-align: center;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
}
.organization-list[data-v-5cdc50d6] {
  gap: 12px;
  max-height: 250px;
  padding: 3px;
  display: grid;
  overflow-y: auto;
}
.organization-list button[data-v-5cdc50d6] {
  color: #20263b;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e4e8f1;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 10px 18px;
  font-size: 16px;
  display: flex;
}
.organization-list button[data-v-5cdc50d6]:hover {
  border-color: #f5a21a;
  box-shadow: 0 0 0 3px #f5a21a1f;
}
.organization-list button[data-v-5cdc50d6]:disabled {
  cursor: wait;
  opacity: .55;
}
.organization-list span[data-v-5cdc50d6] {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.organization-list i[data-v-5cdc50d6] {
  color: #f09a12;
  margin-left: 16px;
  font-size: 28px;
  font-style: normal;
  line-height: 1;
}
.organization-back[data-v-5cdc50d6] {
  color: #8a94a8;
  cursor: pointer;
  background: none;
  border: 0;
  margin: 20px auto 0;
  display: block;
}
.organization-back[data-v-5cdc50d6]:hover {
  color: #e8920c;
}
.registration-success-dialog[data-v-5cdc50d6] {
  background: linear-gradient(145deg, #f8fbff, #eaf3ff);
  padding-top: 34px;
}
.registration-success-dialog[data-v-5cdc50d6]:before, .registration-success-dialog .login-heading[data-v-5cdc50d6] {
  display: none;
}
.register-success[data-v-5cdc50d6] {
  text-align: center;
  padding: 26px 0 8px;
  position: relative;
}
.celebration[data-v-5cdc50d6] {
  height: 114px;
  margin: 0 auto 2px;
  position: relative;
}
.success-mark[data-v-5cdc50d6] {
  filter: drop-shadow(0 10px 12px #f4a01433);
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  margin-left: -38px;
  font-size: 62px;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 20px;
  left: 50%;
}
.confetti[data-v-5cdc50d6] {
  border-radius: 2px;
  width: 8px;
  height: 18px;
  display: block;
  position: absolute;
  transform: rotate(20deg);
}
.confetti-1[data-v-5cdc50d6] {
  background: #35c5db;
  top: 6px;
  left: 19%;
  transform: rotate(-35deg);
}
.confetti-2[data-v-5cdc50d6] {
  background: #f99b80;
  top: 21px;
  left: 30%;
  transform: rotate(45deg);
}
.confetti-3[data-v-5cdc50d6] {
  background: #9c62f0;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  top: 2px;
  left: 42%;
}
.confetti-4[data-v-5cdc50d6] {
  background: #f59a38;
  top: 13px;
  right: 31%;
  transform: rotate(62deg);
}
.confetti-5[data-v-5cdc50d6] {
  background: #e85882;
  top: 28px;
  right: 18%;
  transform: rotate(-22deg);
}
.confetti-6[data-v-5cdc50d6] {
  background: #ef6665;
  width: 18px;
  height: 7px;
  top: 76px;
  left: 15%;
  transform: rotate(-19deg);
}
.confetti-7[data-v-5cdc50d6] {
  background: #ffcf51;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  top: 82px;
  left: 31%;
}
.confetti-8[data-v-5cdc50d6] {
  background: #79c78e;
  width: 18px;
  height: 8px;
  top: 80px;
  right: 29%;
  transform: rotate(18deg);
}
.confetti-9[data-v-5cdc50d6] {
  background: #f79c48;
  width: 19px;
  height: 9px;
  top: 72px;
  right: 15%;
  transform: rotate(-32deg);
}
.confetti-10[data-v-5cdc50d6] {
  background: #f5ce54;
  width: 17px;
  height: 7px;
  top: 44px;
  left: 8%;
  transform: rotate(24deg);
}
.confetti-11[data-v-5cdc50d6] {
  background: #7fcce1;
  width: 8px;
  height: 17px;
  top: 47px;
  right: 8%;
  transform: rotate(35deg);
}
.confetti-12[data-v-5cdc50d6] {
  background: #f5a0bd;
  width: 8px;
  height: 15px;
  top: 17px;
  left: 9%;
  transform: rotate(-15deg);
}
.confetti-13[data-v-5cdc50d6] {
  background: #f9cd58;
  width: 16px;
  height: 6px;
  top: 1px;
  right: 11%;
  transform: rotate(20deg);
}
.confetti-14[data-v-5cdc50d6] {
  background: #9a70f4;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  top: 48px;
  left: 42%;
}
.register-success h2[data-v-5cdc50d6] {
  color: #121829;
  margin: 0;
  font-size: 27px;
  font-weight: 700;
}
.domi-number[data-v-5cdc50d6] {
  background: #ffffffe6;
  border-radius: 17px;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 28px 0 14px;
  padding: 21px;
  display: flex;
  box-shadow: 0 8px 24px #5a709a1a;
}
.domi-number span[data-v-5cdc50d6] {
  color: #101526;
  font-size: 17px;
  font-weight: 700;
}
.domi-number strong[data-v-5cdc50d6] {
  color: #903df0;
  letter-spacing: .07em;
  font-size: 29px;
}
.register-success p[data-v-5cdc50d6] {
  color: #8b96aa;
  margin: 0 0 24px;
  font-size: 13px;
}
.method-switch[data-v-5cdc50d6] {
  color: #8a94a8;
  cursor: pointer;
  background: none;
  border: 0;
  margin: 28px auto 0;
  padding: 0;
  font-size: 16px;
  display: block;
}
.method-switch[data-v-5cdc50d6]:hover {
  color: #e8920c;
}
.agreement[data-v-5cdc50d6] {
  color: #a0a9ba;
  text-align: center;
  margin: 26px 0 0;
  font-size: 13px;
}
@media (width <= 560px) {
.login-dialog[data-v-5cdc50d6] {
    border-radius: 20px;
    padding: 34px 24px 24px;
}
.phone-row[data-v-5cdc50d6], .code-row[data-v-5cdc50d6] {
    gap: 10px;
}
.country-picker[data-v-5cdc50d6] {
    flex-basis: 88px;
    width: 88px;
}
.code-btn[data-v-5cdc50d6] {
    width: 122px;
    font-size: 14px;
}
}


body {
  background-color: var(--background-color);
}
.empty-power-overlay {
  z-index: 10000000;
  background: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}
.empty-power-dialog {
  text-align: center;
  background: #fefefe;
  border-radius: 23px;
  width: 373px;
  height: 371px;
  padding: 35px 40px 60px;
  position: relative;
  box-shadow: 0 8px 32px #0000002e;
}
.empty-power-title {
  color: #313131;
  text-align: center;
  width: 100%;
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 500;
}
.empty-power-close {
  color: #999;
  cursor: pointer;
  margin-left: auto;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 28px;
  right: 22px;
&:hover {
    color: #333;
}
}
.empty-power-desc {
  color: #000;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
}
.empty-power-qrcode {
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: 13px;
  width: 187px;
  height: 187px;
  margin: 0 auto;
  padding: 14px;
  display: inline-block;
  box-shadow: 0 2px 6px 1px #dedede80;
}
.empty-power-qrcode img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.screen-share-modal {
  z-index: 9999;
  cursor: none;
  background-color: #000000f2;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}
.modal-content {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}
.screen-share-video {
  object-fit: contain;
  background-color: #000;
  width: 100%;
  height: 100%;
}
.screen-share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.screen-share-video {
  pointer-events: none;
}


@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*, ::before, ::after, ::backdrop{--un-ease:initial;--un-text-opacity:100%;}}@property --un-text-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}@property --un-outline-style{syntax:"*";inherits:false;initial-value:solid;}@property --un-inset-ring-color{syntax:"*";inherits:false;}@property --un-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-inset-shadow-color{syntax:"*";inherits:false;}@property --un-ring-color{syntax:"*";inherits:false;}@property --un-ring-inset{syntax:"*";inherits:false;}@property --un-ring-offset-color{syntax:"*";inherits:false;}@property --un-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0px;}@property --un-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}@property --un-shadow-color{syntax:"*";inherits:false;}@property --un-ease{syntax:"*";inherits:false;}:root, :host {
--font-sans: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
--font-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
--default-font-family: var(--font-sans);
--default-monoFont-family: var(--font-mono);
--spacing: 0.25rem;
--default-transition-timingFunction: cubic-bezier(0.4, 0, 0.2, 1);
--default-transition-duration: 150ms;
--ease-DEFAULT: cubic-bezier(0.4, 0, 0.2, 1);
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--text-lg-fontSize: 1.125rem;
--text-lg-lineHeight: 1.75rem;
}/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: var(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: var(--default-font-featureSettings, normal); /* 5 */
  font-variation-settings: var(--default-font-variationSettings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: var(
    --default-monoFont-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: var(--default-monoFont-featureSettings, normal); /* 2 */
  font-variation-settings: var(--default-monoFont-variationSettings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden~='until-found'])) {
  display: none !important;
}.text-lg{font-size:var(--text-lg-fontSize);line-height:var(--un-leading, var(--text-lg-lineHeight));}[color~="\#000"]{color:color-mix(in oklab, #000 var(--un-text-opacity), transparent) /* #000 */;}.tab,[tab=""]{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.m4{margin:calc(var(--spacing) * 4);}.m8\.8{margin:calc(var(--spacing) * 8.8);}.my{margin-block:calc(var(--spacing) * 4);}.px{padding-inline:calc(var(--spacing) * 4);}.outline{outline-style:var(--un-outline-style);outline-width:1px;}.b,.border{border-width:1px;}.line-through{text-decoration-line:line-through;}.flex{display:flex;}.inline-flex{display:inline-flex;}.flex-shrink{flex-shrink:1;}.flex-grow{flex-grow:1;}.flex-wrap{flex-wrap:wrap;}.grid{display:grid;}[cols~="\34 "]{grid-template-columns:repeat(4,minmax(0,1fr));}[size~="\32 0"]{width:calc(var(--spacing) * 20);height:calc(var(--spacing) * 20);}[size~="\32 8"]{width:calc(var(--spacing) * 28);height:calc(var(--spacing) * 28);}.h1{height:calc(var(--spacing) * 1);}.h2{height:calc(var(--spacing) * 2);}.h3{height:calc(var(--spacing) * 3);}.block,[block=""]{display:block;}.inline-block{display:inline-block;}.hidden{display:none;}.visible,[visible=""]{visibility:visible;}.collapse{visibility:collapse;}.break-all{word-break:break-all;}.uppercase{text-transform:uppercase;}.shadow{--un-shadow:0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-inset-shadow), var(--un-inset-ring-shadow), var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.transform{transform:var(--un-rotate-x) var(--un-rotate-y) var(--un-rotate-z) var(--un-skew-x) var(--un-skew-y);}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,--un-gradient-from,--un-gradient-via,--un-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--un-ease, var(--default-transition-timingFunction));transition-duration:var(--un-duration, var(--default-transition-duration));}.ease{--un-ease:var(--ease-DEFAULT);transition-timing-function:var(--ease-DEFAULT);}.ease-in-out{--un-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out);}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.filter{filter:var(--un-blur,) var(--un-brightness,) var(--un-contrast,) var(--un-grayscale,) var(--un-hue-rotate,) var(--un-invert,) var(--un-saturate,) var(--un-sepia,) var(--un-drop-shadow,);}.backdrop-filter{-webkit-backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);}.border-collapse{border-collapse:collapse;}@keyframes __un_qm{0%{box-shadow:inset 4px 4px #ff1e90, inset -4px -4px #ff1e90}100%{box-shadow:inset 8px 8px #3399ff, inset -8px -8px #3399ff}} .\?{animation:__un_qm 0.5s ease-in-out alternate infinite;}@keyframes __un_qm{0%{box-shadow:inset 4px 4px #ff1e90, inset -4px -4px #ff1e90}100%{box-shadow:inset 8px 8px #3399ff, inset -8px -8px #3399ff}} [\?=""]{animation:__un_qm 0.5s ease-in-out alternate infinite;}

