@import "https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Manrope:wght@500;700&display=swap";

/* src/styles.css */
:root {
  --bg:
    radial-gradient(
      circle at 18% 14%,
      #f4fbff 0%,
      #dff7ef 34%,
      #fbf8ec 100%);
  --card: #ffffff;
  --line: #dbe4e7;
  --text: #15313a;
  --accent: #0d9488;
  --accent-strong: #0f766e;
  --danger: #be123c;
  --focus: #0f766e;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: var(--bg);
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
}
:where(a:any-link, button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-strong);
  font-weight: 800;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 24px rgba(16, 54, 62, 0.18);
  transform: translateY(-180%);
  transition: transform 0.14s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
}
.visually-hidden:where(:not(:focus-within, :active)) {
  position: absolute !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(16, 54, 62, 0.06);
}
.btn {
  border: none;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 118, 110, 0.2);
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-secondary {
  background: #e7f4f2;
  color: var(--accent-strong);
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  min-height: 48px;
}
@media (pointer: coarse) {
  .btn,
  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
  }
}
.error {
  color: var(--danger);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
