@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap";

/* src/styles.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --text-xs: 0.6875rem;
  --text-sm: 0.75rem;
  --text-base: 0.875rem;
  --text-md: 0.9375rem;
  --text-lg: 1rem;
  --text-xl: 1.125rem;
  --text-2xl: 1.375rem;
  --text-3xl: 1.75rem;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --line-tight: 1.2;
  --line-snug: 1.4;
  --line-normal: 1.6;
  --line-relaxed: 1.75;
}
html,
body {
  height: 100%;
  overflow: hidden;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: var(--text-md);
  font-weight: var(--fw-normal);
  line-height: var(--line-normal);
  color: hsl(220, 35%, 14%);
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
  line-height: 1;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
a {
  text-decoration: none;
  color: inherit;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: var(--text-md);
}
h1 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.025em;
  line-height: var(--line-tight);
  color: hsl(220, 35%, 14%);
}
@media (min-width: 768px) {
  h1 {
    font-size: var(--text-3xl);
  }
}
h2 {
  font-size: var(--text-xl);
  font-weight: var(--fw-semi);
  letter-spacing: -0.02em;
  line-height: var(--line-tight);
  color: hsl(220, 35%, 14%);
}
h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  letter-spacing: -0.015em;
  line-height: var(--line-snug);
  color: hsl(220, 35%, 14%);
}
h4 {
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  line-height: var(--line-snug);
  color: hsl(220, 35%, 14%);
}
p {
  font-size: var(--text-md);
  line-height: var(--line-normal);
  color: hsl(220, 18%, 48%);
}
small,
.text-sm {
  font-size: var(--text-base);
}
.text-xs {
  font-size: var(--text-xs);
}
.text-muted {
  color: hsl(220, 18%, 48%);
}
.text-light {
  color: hsl(220, 14%, 68%);
}
.field-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: hsl(220, 18%, 48%);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: hsl(220, 18%, 92%);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(220, 14%, 68%);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1.5px solid hsl(220, 18%, 92%);
  border-radius: 12px;
  font-size: var(--text-md);
  color: hsl(220, 35%, 14%);
  transition: all 0.2s ease;
}
.form-control::placeholder {
  color: hsl(220, 14%, 68%);
}
.form-control:focus {
  outline: none;
  border-color: hsl(255, 70%, 55%);
  box-shadow: 0 0 0 3px hsla(231, 55%, 56%, 0.25);
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      hsl(255, 70%, 55%),
      hsl(255, 70%, 45%));
  color: white;
  padding: 0.6875rem 1.375rem;
  border-radius: 12px;
  font-weight: var(--fw-bold);
  font-size: var(--text-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 18px -6px hsla(255, 70%, 55%, 0.5);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px hsla(255, 70%, 55%, 0.55);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-outline {
  background: #FFFFFF;
  border: 1.5px solid hsl(220, 18%, 92%);
  color: hsl(220, 35%, 14%);
  padding: 0.6875rem 1.375rem;
  border-radius: 12px;
  font-weight: var(--fw-semi);
  font-size: var(--text-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover:not(:disabled) {
  background: #FDFCFB;
  border-color: hsl(220, 14%, 68%);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  background: hsl(255, 100%, 97%);
  color: hsl(255, 70%, 55%);
}
.cdk-drag-preview {
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  opacity: 0.9;
}
.cdk-drag-placeholder {
  opacity: 0.3;
}
.cdk-drag-animating {
  transition: transform 220ms cubic-bezier(0, 0, 0.2, 1);
}

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