/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #fff;
  --foreground: #0f172a;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #eff6ff;
  --secondary: #64748b;
  --accent: #f59e0b;
  --yellow: #facc15;
  --yellow-soft: #fef9c3;
  --red: #e31e24;
  --red-soft: #fee2e2;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --error: #ef4444;
  --success: #10b981;
  --border: #e2e8f0;
  --radius-sm: .375rem;
  --radius-md: .625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 #0000000d;
  --shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --shadow-md: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  --shadow-lg: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100vw;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body {
  background-color: var(--gray-50);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  border-radius: var(--radius-md);
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #2563eb33;
}

.btn-secondary {
  color: var(--gray-600);
  border-color: var(--border);
  background: #fff;
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.form-label {
  color: var(--gray-600);
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.form-input {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .9375rem;
  transition: all .2s;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  outline: none;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.fade-in {
  animation: .5s ease-out fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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