/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #101112;
  --surface: #151617;
  --surface-hover: #191a1c;
  --input: #18191b;
  --text: #f2f2ef;
  --text-muted: #929499;
  --border: #2b2d30;
  --border-strong: #46494e;
  --button: #f0f0ed;
  --button-hover: #fff;
  --button-text: #111214;
  --error: #e26b65;
  --focus: #d7d7d2;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  min-height: 100%;
  margin: 0;
}

html {
  background-color: var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

::selection {
  color: #111214;
  background: #d6d6d0;
}

button, input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: .55;
}

.login-page {
  background: var(--bg);
  grid-template-rows: 76px 1fr;
  min-height: 100vh;
  padding: 0 32px 32px;
  display: grid;
}

.wordmark {
  letter-spacing: -.03em;
  color: var(--text);
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  display: flex;
}

.login-section {
  place-items: center;
  padding-bottom: 76px;
  display: grid;
}

.login-form-wrap {
  width: min(100%, 360px);
}

.login-form-wrap h1, .empty-dashboard h1 {
  letter-spacing: -.035em;
  color: var(--text);
  margin: 0 0 32px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.login-form {
  gap: 20px;
  display: grid;
}

.field {
  gap: 8px;
  display: grid;
}

.field label {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.field input {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--input);
  width: 100%;
  height: 46px;
  color: var(--text);
  caret-color: var(--text);
  outline: none;
  padding: 0 13px;
  transition: border-color .14s, background-color .14s, box-shadow .14s;
}

.field input:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.field input:focus {
  border-color: var(--focus);
  background: var(--input);
  box-shadow: 0 0 0 1px var(--focus);
}

.field input::placeholder {
  color: #6f7176;
}

.field input:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  box-shadow: 0 0 0 1000px var(--input) inset;
  -webkit-box-shadow: 0 0 0 1000px var(--input) inset;
  border: 1px solid var(--border);
  transition: background-color 9999s ease-out;
}

.field input:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  box-shadow: 0 0 0 1000px var(--input) inset;
  -webkit-box-shadow: 0 0 0 1000px var(--input) inset;
  border: 1px solid var(--border);
  transition: background-color 9999s ease-out;
}

.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  box-shadow: 0 0 0 1000px var(--input) inset;
  -webkit-box-shadow: 0 0 0 1000px var(--input) inset;
  border: 1px solid var(--border);
  transition: background-color 9999s ease-out;
}

.field input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  box-shadow: 0 0 0 1000px var(--input) inset;
  -webkit-box-shadow: 0 0 0 1000px var(--input) inset;
  border: 1px solid var(--border);
  transition: background-color 9999s ease-out;
}

.primary-button {
  border: 1px solid var(--button);
  border-radius: var(--radius);
  background: var(--button);
  height: 46px;
  color: var(--button-text);
  margin-top: 4px;
  font-weight: 600;
  transition: background .14s, border-color .14s;
}

.primary-button:hover:not(:disabled) {
  background: var(--button-hover);
  border-color: var(--button-hover);
}

.primary-button:focus-visible, .text-button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.form-error {
  color: var(--error);
  margin: -4px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.app-page {
  background: var(--bg);
  min-height: 100vh;
}

.app-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 32px;
  display: flex;
}

.wordmark-static {
  height: 100%;
}

.account-area {
  color: var(--text-muted);
  align-items: center;
  gap: 18px;
  font-size: 14px;
  display: flex;
}

.account-area form {
  margin: 0;
}

.text-button {
  color: var(--text-muted);
  background: none;
  border: 0;
  padding: 0;
}

.text-button:hover {
  color: var(--text);
}

.empty-dashboard {
  padding: 64px 32px;
}

@media (max-width: 640px) {
  .login-page {
    grid-template-rows: 64px 1fr;
    padding: 0 20px 20px;
  }

  .login-section {
    place-items: start stretch;
    padding-top: 18vh;
    padding-bottom: 0;
  }

  .login-form-wrap {
    width: 100%;
  }

  .app-header {
    height: 64px;
    padding: 0 20px;
  }

  .empty-dashboard {
    padding: 40px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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