/* src/styles.scss */
:root {
  --color-primary: #6D28D9;
  --color-primary-dark: #5B21B6;
  --color-primary-light: #7C3AED;
  --color-primary-ghost: rgba(109, 40, 217, 0.06);
  --color-disabled: #D1D5DB;
  --color-error-bg: #FEF2F2;
  --color-error: #DC2626;
  --color-success: #059669;
  --color-warning: #D97706;
  --color-white: #FFFFFF;
  --color-black: #0F0F0F;
  --color-dark-grey: #1F2937;
  --color-grey: #9CA3AF;
  --color-grey-light: #F3F4F6;
  --color-bg: #F9FAFB;
  --color-bg-subtle: #F3F4F6;
  --color-text: #111827;
  --color-text-light: #6B7280;
  --color-label: #374151;
  --color-border: #E5E7EB;
  --color-border-focus: #6D28D9;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --color-header-bg: rgba(255, 255, 255, 0.92);
  --color-main-bg: #F9FAFB;
  --color-footer-bg: #FFFFFF;
  --color-footer-border: #E5E7EB;
  --transition-fast: 0.12s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.35s ease;
}
.btn-primary {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 0 24px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  cursor: pointer;
  transition: background var(--transition-base), box-shadow var(--transition-base) !important;
  box-shadow: none !important;
}
.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-dark) !important;
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.22) !important;
}
.btn-primary:active:not(:disabled) {
  background: var(--color-primary-dark) !important;
  box-shadow: none !important;
}
.btn-primary:disabled {
  background: var(--color-disabled) !important;
  cursor: not-allowed;
  box-shadow: none !important;
  opacity: 0.65;
}
.btn-outline {
  background: transparent !important;
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary) !important;
  border-radius: 10px !important;
  padding: 0 24px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base) !important;
}
.btn-outline:hover:not(:disabled) {
  background: var(--color-primary-ghost) !important;
}
.btn-outline:disabled {
  border-color: var(--color-disabled) !important;
  color: var(--color-disabled) !important;
  cursor: not-allowed;
}
.btn-full-width {
  width: 100% !important;
}
.btn-lg {
  height: 48px !important;
  font-size: 0.95rem !important;
  border-radius: 12px !important;
}
.btn-sm {
  height: 34px !important;
  padding: 0 16px !important;
  font-size: 0.8rem !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
app-root {
  display: block;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
}
h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
}
h4 {
  font-size: 0.95rem;
  font-weight: 600;
}
h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-light);
}
a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-primary-dark);
}
label {
  display: block;
  margin-bottom: 5px;
  padding-left: 2px;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-label);
}
input,
select,
textarea {
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  background: var(--color-white);
  color: var(--color-text);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--color-grey);
  font-size: 0.875rem;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.08);
}
input.is-valid,
select.is-valid,
textarea.is-valid {
  border-color: var(--color-success) !important;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.06) !important;
}
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--color-error) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.06) !important;
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px !important;
}
textarea {
  border-radius: 10px;
  resize: vertical;
  min-height: 100px;
}
label.custom-checkbox {
  color: var(--color-text-light);
  font-size: 0.825rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  transition: color var(--transition-fast);
}
label.custom-checkbox:hover {
  color: var(--color-text);
}
.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox .checkmark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  margin-right: 10px;
  margin-top: 2px;
  border: 1.5px solid var(--color-border);
  border-radius: 5px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.custom-checkbox:hover .checkmark {
  border-color: var(--color-primary);
}
.custom-checkbox input[type=checkbox]:checked + .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.custom-checkbox input[type=checkbox]:checked + .checkmark::before {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border) !important;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
.card .card-body {
  padding: 18px 16px;
}
.error-text {
  font-size: 0.75rem;
  color: var(--color-error);
  padding-left: 2px;
  margin-top: 4px;
  display: block;
  animation: fadeIn 0.15s ease;
}
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 14px;
}
.loading-overlay p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.page-enter {
  animation: fadeSlideUp 0.3s ease both;
}
.card-enter {
  animation: scaleIn 0.25s ease both;
}

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