/* src/styles.scss */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-family:
    "Inter",
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-family:
    "Inter",
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  white-space: nowrap;
  background:
    linear-gradient(
      135deg,
      #1E3A8A 0%,
      #1E40AF 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn--primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-family:
    "Inter",
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  white-space: nowrap;
  background: #FFFFFF;
  color: #1E3A8A;
  border: 2px solid #1E3A8A;
}
.btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--secondary:hover:not(:disabled) {
  background: #1E3A8A;
  color: #FFFFFF;
}
.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-family:
    "Inter",
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  color: #000000;
  border: 2px solid transparent;
}
.btn--ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--ghost:hover:not(:disabled) {
  background: #F9FAFB;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 5.625rem;
}
.btn--small {
  padding: 0.25rem 1rem;
  font-size: 4.375rem;
}
.input {
  width: 100%;
  padding: 0.5rem 1rem;
  font-family:
    "Inter",
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 5rem;
  line-height: 1.5;
  color: #000000;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 0.5rem;
  transition: all 200ms ease;
}
.input:focus {
  outline: none;
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.input::placeholder {
  color: #6B7280;
}
.input:disabled {
  background: #F9FAFB;
  cursor: not-allowed;
}
.card {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 200ms ease;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
.section {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 9rem 0;
  }
}
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(30, 58, 138, 0.3);
  border-radius: 50%;
  border-top-color: #1E3A8A;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #FFFFFF;
  color: #000000;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 1070;
  animation: slideIn 0.3s ease;
}
.toast--success {
  border-left: 4px solid #10B981;
}
.toast--error {
  border-left: 4px solid #EF4444;
}
.toast--warning {
  border-left: 4px solid #F59E0B;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 3.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background: #F9FAFB;
  color: #1E3A8A;
}
.badge--primary {
  background: rgba(30, 58, 138, 0.1);
  color: #1E3A8A;
}
.badge--success {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.badge--warning {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.badge--error {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.divider {
  height: 1px;
  background: #E5E7EB;
  border: none;
  margin: 2rem 0;
}
.link {
  color: #1E3A8A;
  text-decoration: none;
  transition: color 200ms ease;
}
.link:hover {
  color: #1E40AF;
  text-decoration: underline;
}
.link--inverse {
  color: #FFFFFF;
}
.link--inverse:hover {
  color: rgba(255, 255, 255, 0.8);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  font-family:
    "Inter",
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #FFFFFF;
  min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Inter",
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
  margin: 0;
}
h1 {
  font-size: 15rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 18.75rem;
  }
}
h2 {
  font-size: 11.25rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 15rem;
  }
}
h3 {
  font-size: 9.375rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 11.25rem;
  }
}
h4 {
  font-size: 7.5rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 9.375rem;
  }
}
h5 {
  font-size: 6.25rem;
}
@media (min-width: 768px) {
  h5 {
    font-size: 7.5rem;
  }
}
h6 {
  font-size: 5.625rem;
}
@media (min-width: 768px) {
  h6 {
    font-size: 6.25rem;
  }
}
p {
  margin: 0 0 1rem 0;
  color: #1E3A8A;
}
a:focus-visible {
  outline: 2px solid #1E3A8A;
  outline-offset: 2px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.hidden {
  display: none;
}
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}

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