@import "https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap";

/* src/styles.css */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --accent-primary: #111827;
  --accent-secondary: #4b5563;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --border-color: #e5e7eb;
  --glass-bg: #ffffff;
  --glass-border: #e5e7eb;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
::-webkit-scrollbar {
  display: none;
}
body {
  font-family: "Nunito", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.btn-primary {
  background: var(--accent-primary);
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-secondary);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.2);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.05);
}
.form-input::placeholder {
  color: #9ca3af;
}
.gradient-blob {
  display: none;
}
.gradient-blob-2 {
  display: none;
}

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