@import "https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;600&display=swap";

/* src/styles.css */
:root {
  --c-primary: #073d30;
  --c-primary-hover: #052e25;
  --c-accent: #b1fa63;
  --c-accent-hover: #9ee84e;
  --c-highlight: #b2a1ff;
  --c-error: #dc2626;
  --c-text: #111827;
  --c-text-muted: #6b7280;
  --c-border: #d1d5db;
  --c-bg: #f5f5f3;
  --c-card: #ffffff;
  --radius: 8px;
  --sidebar-width: 240px;
  --sidebar-collapsed-width: 64px;
  --sidebar-transition: width 0.2s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.auth-card {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 6%);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
}
.auth-logo {
  display: block;
  height: 28px;
  width: auto;
  margin-bottom: 1.5rem;
}
.auth-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.375rem;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.auth-subtitle {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin: 0 0 2rem;
  line-height: 1.5;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
}
.form-field input {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--c-text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-field input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgb(177 250 99 / 30%);
}
.field-error {
  font-size: 0.75rem;
  color: var(--c-error);
}
.auth-error {
  background: rgb(220 38 38 / 6%);
  border: 1px solid rgb(220 38 38 / 20%);
  border-radius: var(--radius);
  color: var(--c-error);
  font-size: 0.875rem;
  padding: 0.75rem;
  line-height: 1.4;
}
.btn-primary {
  background: var(--c-accent);
  border: none;
  border-radius: var(--radius);
  color: var(--c-primary);
  cursor: pointer;
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 0.25rem;
  padding: 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
  width: 100%;
}
.btn-primary:hover:not(:disabled) {
  background: var(--c-accent-hover);
}
.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-primary--link {
  margin-top: 0;
}
.auth-link {
  display: block;
  font-size: 0.875rem;
  color: var(--c-highlight);
  text-align: center;
  text-decoration: none;
  margin-top: 1.25rem;
}
.auth-link:hover {
  text-decoration: underline;
}

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