/* [project]/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
}

:root {
  --bg: #0b1120;
  --bg-2: #0f172a;
  --panel: #111c30;
  --line: #1e293b;
  --line-2: #24344d;
  --txt: #e2e8f0;
  --txt-dim: #94a3b8;
  --txt-mute: #64748b;
  --brand: #14b8a6;
  --brand-dim: #0d9488;
  --brand-soft: #134e4a;
  --ok: #10b981;
  --warn: #f59e0b;
  --err: #f43f5e;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --sp: 8px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  font: 14px / 1.5 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  overflow: hidden;
}

button {
  font: inherit;
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
}

button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

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

a {
  color: var(--brand);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg);
  background: #2b3b55;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3b4f70;
}

.phone-shell {
  background: #fff;
  border: 11px solid #05070d;
  border-radius: 42px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px #0000008c, 0 0 0 1px #ffffff0d;
}

.phone-shell iframe {
  border: 0;
  display: block;
}

.scroll-y {
  min-height: 0;
  overflow: hidden auto;
}

.row {
  align-items: center;
  display: flex;
}

.spin {
  animation: 1s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: 1.6s ease-in-out infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .45;
  }
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/