/* Extracted and adapted from base_html theme assets */
:root {
  --bs-font-sans-serif: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.9375rem;
  --bs-body-line-height: 1.375;
  --bs-body-color: #6d6777;
  --bs-body-bg: #f4f5fa;
  --bs-emphasis-color: #2e263d;
  --bs-border-color: color-mix(in sRGB, #2e263d 12%, #fff);

  --theme-primary: #8c57ff;
  --theme-info: #16b1ff;
  --theme-success: #56ca00;
  --theme-warning: #ffb400;
  --theme-danger: #ff4c51;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
}

h1, h2, h3, h4, h5, h6,
.text-emphasis {
  color: var(--bs-emphasis-color);
}

.card,
.card-modern {
  border-color: var(--bs-border-color);
  box-shadow: 0 0.25rem 0.625rem 0 rgba(46, 38, 61, 0.08);
}

.btn-primary {
  --bs-btn-bg: var(--theme-primary);
  --bs-btn-border-color: var(--theme-primary);
  --bs-btn-hover-bg: #7e4ee6;
  --bs-btn-hover-border-color: #7e4ee6;
}

.navbar-modern {
  background: linear-gradient(120deg, #312d4b, #59516a);
}

.table-modern th {
  color: color-mix(in sRGB, #2e263d 82%, #fff);
}

.badge-soft-success {
  background: #e4f7d6;
  color: #225100;
}

.badge-soft-danger {
  background: #ffe2e3;
  color: #661e20;
}

.authentication-wrapper {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 120px);
  align-items: center;
  justify-content: center;
}

.authentication-wrapper .authentication-inner {
  width: 100%;
  max-width: 460px;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

.demo-vertical-spacing > * {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}
