/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --ink: #171717;
  --muted: #555f68;
  --line: #e8ecef;
  --brand: #075e83;
  --page: #fff;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  color: var(--ink);
  text-rendering: optimizelegibility;
  background: radial-gradient(80% 60% at 20% 10%, #b8e4f9 0%, #0000 60%), radial-gradient(60% 50% at 80% 80%, #d4c5f9 0%, #0000 55%), radial-gradient(50% 40% at 60% 30%, #fde8c8 0%, #0000 50%), #f0f4f8;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.shell {
  text-align: center;
  align-content: center;
  place-items: center;
  gap: 24px;
  min-height: 100svh;
  padding: 32px;
  display: grid;
}

.logo {
  width: min(300px, 74vw);
  height: auto;
  display: block;
}

p {
  max-width: 28rem;
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--page);
  border: 1px solid var(--line);
  text-align: left;
  border-radius: 12px;
  flex-direction: column;
  gap: 20px;
  width: min(480px, 100%);
  padding: 32px;
  display: flex;
  box-shadow: 0 2px 16px #0000000f;
}

.form-title {
  color: var(--ink);
  margin: 0;
  font-size: 1.25rem;
}

.field {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.field label {
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
}

.field input, .field textarea {
  color: var(--ink);
  border: 1px solid var(--line);
  resize: vertical;
  background: #f7f9fb;
  border-radius: 8px;
  outline: none;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .15s;
}

.field input:focus, .field textarea:focus {
  border-color: var(--brand);
  background: var(--page);
}

.field input:disabled, .field textarea:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-feedback {
  border-radius: 6px;
  margin: 0;
  padding: 10px 14px;
  font-size: .875rem;
}

.form-feedback.success {
  color: #1a6b30;
  background: #e6f4ea;
}

.form-feedback.error {
  color: #9b2020;
  background: #fdecea;
}

.submit-btn {
  color: #fff;
  background: var(--brand);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  align-self: flex-end;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity .15s;
}

.submit-btn:hover:not(:disabled) {
  opacity: .88;
}

.submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: initial;
    --lightningcss-dark: ;
    color-scheme: light;
  }
}

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