/* [project]/apps/web/src/styles/auth.module.css [app-client] (css) */
.auth-module__1e9DxG__authShell {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
  display: flex;
}

.auth-module__1e9DxG__authSplit {
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  min-height: 100vh;
  display: grid;
}

.auth-module__1e9DxG__authSplitPanel {
  background: var(--accent);
  color: #fff;
  align-items: center;
  padding: 64px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.auth-module__1e9DxG__authSplitPanel:before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(#ffffff24 1.5px, #0000 1.5px);
  background-size: 24px 24px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(100% 80% at 100% 100%, #000, #0000 70%);
  mask-image: radial-gradient(100% 80% at 100% 100%, #000, #0000 70%);
}

.auth-module__1e9DxG__authSplitPanelInner {
  max-width: 400px;
  position: relative;
}

.auth-module__1e9DxG__authSplitLogo {
  color: #fff;
  letter-spacing: -.01em;
  align-items: center;
  gap: 8px;
  margin-bottom: 56px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.auth-module__1e9DxG__authSplitLogo:before {
  content: "";
  background: #fff;
  border-radius: 2px;
  width: 10px;
  height: 10px;
}

.auth-module__1e9DxG__authSplitPanel h2 {
  letter-spacing: -.02em;
  text-wrap: balance;
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.auth-module__1e9DxG__authSplitPanel p {
  color: #ffffffd9;
  max-width: 40ch;
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.6;
}

.auth-module__1e9DxG__authSplitPoints {
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.auth-module__1e9DxG__authSplitPoints li {
  color: #ffffffeb;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  display: flex;
}

.auth-module__1e9DxG__authSplitPoints li:before {
  content: "✓";
  background: #ffffff29;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  transform: translateY(-1px);
}

.auth-module__1e9DxG__authSplitForm {
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
}

.auth-module__1e9DxG__authMobileLogo {
  display: none;
}

@media (max-width: 860px) {
  .auth-module__1e9DxG__authSplit {
    grid-template-columns: 1fr;
  }

  .auth-module__1e9DxG__authSplitPanel {
    display: none;
  }

  .auth-module__1e9DxG__authMobileLogo {
    color: var(--text);
    letter-spacing: -.01em;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
  }

  .auth-module__1e9DxG__authMobileLogo:before {
    content: "";
    background: var(--accent);
    border-radius: 2px;
    width: 10px;
    height: 10px;
  }
}

.auth-module__1e9DxG__authCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  padding: 40px 36px;
}

.auth-module__1e9DxG__authCard h1 {
  letter-spacing: -.01em;
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 700;
}

.auth-module__1e9DxG__authCard p.auth-module__1e9DxG__subtitle {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.5;
}

.auth-module__1e9DxG__submitBtn {
  padding: 12px;
  font-size: 14px;
  transition: background-color .15s;
}

.auth-module__1e9DxG__submitBtn:not(:disabled):hover {
  background: #2f5cd4;
}

.auth-module__1e9DxG__submitBtn:not(:disabled):active {
  background: #2650b8;
}

.auth-module__1e9DxG__errorText {
  color: var(--accent-2);
  margin: 0 0 12px;
  font-size: 12px;
}

.auth-module__1e9DxG__footerLink {
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
}

.auth-module__1e9DxG__authCard .auth-module__1e9DxG__footerLink {
  margin-top: 0;
}

.auth-module__1e9DxG__authCard .auth-module__1e9DxG__footerLink:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 20px;
}

.auth-module__1e9DxG__authCard .auth-module__1e9DxG__footerLink + .auth-module__1e9DxG__footerLink {
  margin-top: 8px;
}

.auth-module__1e9DxG__authCard .auth-module__1e9DxG__footerLink a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.auth-module__1e9DxG__authCard .auth-module__1e9DxG__footerLink a:hover {
  text-decoration: underline;
}

.auth-module__1e9DxG__crawlingOverlay {
  z-index: 3000;
  background: var(--panel);
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0;
}

.auth-module__1e9DxG__crawlingCard {
  text-align: center;
  max-width: 420px;
}

.auth-module__1e9DxG__crawlingIcon {
  background: var(--surface-active);
  width: 56px;
  height: 56px;
  color: var(--accent);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  display: flex;
}

.auth-module__1e9DxG__crawlingSpin {
  animation: .8s linear infinite auth-module__1e9DxG__crawlingSpin;
}

@keyframes auth-module__1e9DxG__crawlingSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-module__1e9DxG__crawlingSpin {
    animation: none;
  }
}

/* [project]/apps/web/src/styles/buttons.module.css [app-client] (css) */
.buttons-module__BPlYwW__btn {
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.buttons-module__BPlYwW__btn:disabled {
  opacity: .6;
  cursor: default;
}

.buttons-module__BPlYwW__btnSecondary {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  cursor: pointer;
  background: none;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
}

.buttons-module__BPlYwW__btnSecondary:hover {
  background: var(--surface-alt);
}

.buttons-module__BPlYwW__btnDanger {
  border-radius: var(--radius);
  background: var(--accent-2);
  color: #fff;
  cursor: pointer;
  border: none;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
}

.buttons-module__BPlYwW__btnDanger:disabled {
  opacity: .6;
  cursor: default;
}

.buttons-module__BPlYwW__iconBtn {
  border-radius: var(--radius);
  width: 32px;
  height: 32px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.buttons-module__BPlYwW__iconBtn:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.buttons-module__BPlYwW__deleteLink {
  color: var(--accent-2);
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 2px;
  padding: 4px 0;
  font-size: 11px;
}

.buttons-module__BPlYwW__addRowBtn {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  background: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  transition: border-color .15s, color .15s, background .15s;
  display: inline-flex;
}

.buttons-module__BPlYwW__addRowBtn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface-active);
}

.buttons-module__BPlYwW__modeToggle {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
}

.buttons-module__BPlYwW__modeToggle:hover {
  background: #e3e7ee;
}

/* [project]/apps/web/src/styles/forms.module.css [app-client] (css) */
.forms-module___IYriG__field {
  margin-bottom: 18px;
}

.forms-module___IYriG__field label {
  color: var(--text);
  margin-bottom: 7px;
  font-size: 11.5px;
  font-weight: 500;
  display: block;
}

.forms-module___IYriG__field .forms-module___IYriG__selectLabel {
  margin-bottom: 0;
}

.forms-module___IYriG__field input, .forms-module___IYriG__field textarea, .forms-module___IYriG__input {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  width: 100%;
  color: var(--text);
  padding: 11px 14px;
  font-size: 13px;
  transition: border-color .15s, box-shadow .15s;
}

.forms-module___IYriG__field input:hover, .forms-module___IYriG__field textarea:hover, .forms-module___IYriG__input:hover {
  border-color: #c7ccd6;
}

.forms-module___IYriG__field input:focus, .forms-module___IYriG__field textarea:focus, .forms-module___IYriG__input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px #3b6fed24;
}

.forms-module___IYriG__select {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.forms-module___IYriG__selectLabel {
  color: var(--text);
  font-size: 11.5px;
  font-weight: 500;
}

.forms-module___IYriG__selectTrigger {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  width: 100%;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 13px;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
}

.forms-module___IYriG__selectTrigger:hover {
  border-color: #c7ccd6;
}

.forms-module___IYriG__selectTrigger:focus-visible {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px #3b6fed24;
}

.forms-module___IYriG__select[data-disabled] .forms-module___IYriG__selectTrigger {
  opacity: .5;
  cursor: default;
}

.forms-module___IYriG__selectCaret {
  color: var(--muted);
  display: inline-flex;
}

.forms-module___IYriG__selectContent {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: var(--reference-width, 180px);
  z-index: 2100;
  max-height: 280px;
  padding: 4px;
  overflow-y: auto;
}

.forms-module___IYriG__selectItem {
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text);
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  display: flex;
}

.forms-module___IYriG__selectItem[data-highlighted] {
  background: var(--surface-alt);
}

.forms-module___IYriG__selectIndicator[hidden] {
  display: none;
}

.forms-module___IYriG__selectIndicator {
  color: var(--accent);
  display: inline-flex;
}

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