/* [project]/src/modules/published/helperStyles.css [app-client] (css) */
.focus-visible\:j-underline:focus-visible {
  outline: 0;
  position: relative;
}

.focus-visible\:j-underline:focus-visible:after {
  content: "";
  background-color: var(--j-color-primary);
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
}

.focus-visible\:j-underline-offset-lg:focus-visible:after {
  bottom: -8px;
}

.focus-visible\:j-outline:focus-visible {
  outline: 1px solid var(--j-color-primary);
  outline-offset: 2px;
}

.focus-visible\:j-border:focus-visible {
  border-color: var(--j-color-primary-text);
}

/* [project]/src/views/layouts/published/PublishedFormLayout.module.css [app-client] (css) */
.PublishedFormLayout-module__CjoQJG__body {
  background-color: var(--j-bg-color);
  --lucide-size: var(--j-icon-size, 20px);
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

@media (max-width: 575.99px) {
  .PublishedFormLayout-module__CjoQJG__body:after {
    content: "";
    background-color: var(--j-bg-color);
    background-image: var(--j-bg-image-xs);
    z-index: -2;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media (min-width: 576px) {
  .PublishedFormLayout-module__CjoQJG__body {
    --j-bg-image: var(--j-bg-image-sm);
    background-image: var(--j-bg-image);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}

@media (min-width: 768px) {
  .PublishedFormLayout-module__CjoQJG__body {
    --j-bg-image: var(--j-bg-image-md);
  }
}

@media screen and (min-width: 992px) {
  .PublishedFormLayout-module__CjoQJG__body {
    --j-bg-image: var(--j-bg-image-lg);
  }
}

@media screen and (min-width: 1281px) {
  .PublishedFormLayout-module__CjoQJG__body {
    --j-bg-image: var(--j-bg-image-xl);
  }
}

/* [project]/src/views/layouts/layout.css [app-client] (css) */
:root {
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --background: var(--gray-100);
  --foreground: #020617;
  --card: #fff;
  --card-foreground: #020617;
  --popover: #fff;
  --popover-foreground: #020617;
  --primary: #2563eb;
  --primary-foreground: #f8fafc;
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #f1f5f9;
  --accent-foreground: #0f172a;
  --destructive: #ef4444;
  --border: var(--gray-200);
  --input: var(--gray-200);
  --ring: #2563eb;
  --chart-1: #f54a00;
  --chart-2: #009689;
  --chart-3: #104e64;
  --chart-4: #ffba00;
  --chart-5: #fd9a00;
  --sidebar: var(--gray-100);
  --sidebar-foreground: #09090b;
  --sidebar-primary: #2563eb;
  --sidebar-primary-foreground: #f8fafc;
  --sidebar-accent: #f1f5f9;
  --sidebar-accent-foreground: #0f172a;
  --sidebar-border: #e2e8f0;
  --sidebar-ring: #2563eb;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Ubuntu", "Cantarell", "Noto Sans",
    "Helvetica Neue", Arial, sans-serif;
  --font-serif: Merriweather, serif;
  --font-mono: JetBrains Mono, monospace;
  --radius: .5rem;
}

.dark {
  --background: #0f182b;
  --foreground: #e3e8ef;
  --card: #1d293d;
  --card-foreground: #e3e8ef;
  --popover: #1d293d;
  --popover-foreground: #e3e8ef;
  --primary: #818cf9;
  --primary-foreground: #0f182b;
  --secondary: #2f3848;
  --secondary-foreground: #d0d4db;
  --muted: #1d293d;
  --muted-foreground: #9ba2ae;
  --accent: #364050;
  --accent-foreground: #d0d4db;
  --destructive: #f14444;
  --border: #4b5666;
  --input: #4b5666;
  --ring: #818cf9;
  --chart-1: #818cf9;
  --chart-2: #6468f0;
  --chart-3: #4f46e5;
  --chart-4: #443bc9;
  --chart-5: #3730a5;
  --sidebar: #1d293d;
  --sidebar-foreground: #e3e8ef;
  --sidebar-primary: #818cf9;
  --sidebar-primary-foreground: #0f182b;
  --sidebar-accent: #364050;
  --sidebar-accent-foreground: #d0d4db;
  --sidebar-border: #4b5666;
  --sidebar-ring: #818cf9;
}

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

* {
  margin: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-autospace: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji;
  line-height: 1.5;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

ul {
  padding-left: 20px;
}

table {
  border-collapse: collapse;
}

:focus {
  outline: none;
}

.lucide {
  --lucide-relative-size: calc(16 / 14 * 1em);
  width: var(--lucide-size, unset);
  height: var(--lucide-size, unset);
  text-align: center;
  text-transform: none;
  flex-shrink: 0;
  align-items: center;
  font-style: normal;
  line-height: 0;
  display: inline-flex;
  vertical-align: -.225em !important;
}

.lucide[data-relative-size] {
  --lucide-size: var(--lucide-relative-size);
}

:root {
  --x-color-text: #000;
  --x-color-text-secondary: #434343;
  --x-color-text-tertiary: #64748b;
  --x-color-link: #1677ff;
  --x-color-alipay: #027aff;
  --x-color-wxpay: #07c160;
}

.body-overflow-hidden {
  overflow: hidden;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

/*# sourceMappingURL=src_1dle021._.css.map*/