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

/* src/styles.css */
:root {
  --bg: #eef1e7;
  --bg-2: #d8dfcc;
  --panel: #ffffff;
  --line: #d8ddcf;
  --text: #1f291f;
  --muted: #5e695d;
  --accent: #1f6f5f;
  --accent-strong: #175346;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  font-family:
    "Manrope",
    "Segoe UI",
    Tahoma,
    sans-serif;
  background:
    radial-gradient(
      circle at 5% 10%,
      #f7f9f2 0%,
      transparent 24%),
    radial-gradient(
      circle at 95% 20%,
      #e8efe2 0%,
      transparent 22%),
    linear-gradient(
      155deg,
      var(--bg) 0%,
      var(--bg-2) 100%);
  color: var(--text);
}
h1,
h2,
h3 {
  font-family:
    "Fraunces",
    Georgia,
    serif;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(28, 43, 28, 0.1);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
input,
select,
textarea,
button {
  width: 100%;
  font: inherit;
}
input,
select,
textarea {
  border: 1px solid #b9c3b3;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #5d998d;
  box-shadow: 0 0 0 3px rgba(93, 153, 141, 0.2);
}
button {
  border: none;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary {
  background:
    linear-gradient(
      120deg,
      var(--accent) 0%,
      var(--accent-strong) 100%);
  color: #fff;
}
.btn-secondary {
  background: #e8ecdf;
  color: #2c372c;
}
.action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.error {
  color: #b92f2f;
  margin-top: 10px;
}
.success {
  color: #14754e;
  margin-top: 10px;
}

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