:root {
  --usda-ink: #102a43;
  --usda-navy: #102f4f;
  --usda-navy-deep: #0a2239;
  --usda-primary: #087f8c;
  --usda-primary-dark: #066771;
  --usda-primary-soft: #e6f5f5;
  --usda-emerald: #16866f;
  --usda-blue: #2d6cdf;
  --usda-amber: #d98b18;
  --usda-danger: #c2414b;
  --usda-bg: #f3f6f8;
  --usda-surface: #ffffff;
  --usda-border: #dce4e9;
  --usda-muted: #667b8c;
  --usda-shadow: 0 12px 32px rgba(16, 42, 67, .07);
  --usda-shadow-sm: 0 4px 14px rgba(16, 42, 67, .06);
  --bs-primary: #087f8c;
  --bs-primary-rgb: 8, 127, 140;
  --bs-link-color: #08727d;
  --bs-link-hover-color: #055b64;
  --bs-body-color: #243b53;
  --bs-body-bg: #f3f6f8;
  --bs-border-color: #dce4e9;
  --bs-border-radius: .75rem;
  --bs-border-radius-sm: .55rem;
  --bs-border-radius-lg: 1rem;
}

* {
  scrollbar-color: #b8c5ce transparent;
  scrollbar-width: thin;
}

html {
  min-width: 320px;
  background: var(--usda-bg);
}

body {
  min-height: 100vh;
  color: var(--bs-body-color);
  background: var(--usda-bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  text-underline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.min-w-0 {
  min-width: 0;
}

.app-container {
  max-width: 1380px;
  padding-right: clamp(1rem, 2vw, 2rem);
  padding-left: clamp(1rem, 2vw, 2rem);
}

.app-layout {
  display: flex;
  min-height: 100vh;
}

.app-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1030;
  width: 272px;
  color: #dbe8f1;
  background:
    radial-gradient(circle at 10% 0, rgba(26, 167, 169, .2), transparent 30%),
    linear-gradient(180deg, var(--usda-navy) 0%, var(--usda-navy-deep) 100%);
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 1.5rem 1rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0 .5rem 2.2rem;
  color: #fff;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  width: 42px;
  height: 42px;
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #22b8ae, #0b8f9c);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.brand-mark::after {
  position: absolute;
  inset: auto 5px 5px;
  height: 6px;
  content: "";
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.brand-mark span {
  z-index: 1;
  display: block;
  width: 5px;
  background: #fff;
  border-radius: 5px 5px 2px 2px;
}

.brand-mark span:nth-child(1) { height: 9px; opacity: .78; }
.brand-mark span:nth-child(2) { height: 17px; }
.brand-mark span:nth-child(3) { height: 13px; opacity: .9; }

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.brand-subtitle {
  margin-top: .2rem;
  color: #91a9ba;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.sidebar-nav {
  flex: 1 1 auto;
}

.nav-section-label {
  padding: 0 .85rem;
  margin: 1.35rem 0 .5rem;
  color: #7f9aad;
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-section-label:first-child {
  margin-top: 0;
}

.sidebar-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 46px;
  padding: .65rem .85rem;
  margin-bottom: .2rem;
  color: #bdd0dd;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: .75rem;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.sidebar-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .065);
  transform: translateX(2px);
}

.sidebar-link.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(18, 164, 169, .28), rgba(18, 164, 169, .12));
  border-color: rgba(80, 214, 208, .17);
  box-shadow: inset 3px 0 #34c6bc;
}

.sidebar-link.active .ui-icon {
  color: #6de2db;
}

.sidebar-profile {
  padding: 1rem;
  margin-top: 1.25rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: .9rem;
}

.sidebar-avatar,
.user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 750;
  background: linear-gradient(145deg, #1aa8a8, #087583);
  box-shadow: 0 4px 12px rgba(8, 127, 140, .24);
}

.sidebar-avatar {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.sidebar-user-name {
  color: #f5fafc;
  font-size: .86rem;
  font-weight: 650;
}

.sidebar-user-role {
  color: #91a9ba;
  font-size: .72rem;
}

.sidebar-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .55rem;
  color: #bad0dc;
  font-size: .82rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: .6rem;
  transition: .18s ease;
}

.sidebar-logout:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .2);
}

.app-main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  min-height: 100vh;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 78px;
  padding: .85rem 0;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(203, 214, 222, .8);
  box-shadow: 0 2px 12px rgba(16, 42, 67, .035);
  backdrop-filter: blur(16px);
}

.topbar-eyebrow {
  color: var(--usda-primary);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.topbar-title {
  margin-top: .25rem;
  color: var(--usda-ink);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.015em;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--usda-ink);
  background: #f3f7f9;
  border: 1px solid var(--usda-border);
}

.user-summary {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .35rem .5rem .35rem .35rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user-name {
  color: var(--usda-ink);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.15;
}

.user-role {
  margin-top: .18rem;
  color: var(--usda-muted);
  font-size: .7rem;
  line-height: 1.15;
}

.app-content {
  flex: 1 1 auto;
  padding: clamp(1.35rem, 3vw, 2.35rem) 0 2.75rem;
}

.app-footer {
  padding: 1rem 0 1.4rem;
  color: #8295a3;
  font-size: .75rem;
  text-align: center;
}

.mobile-navigation {
  width: min(86vw, 290px) !important;
  color: #dbe8f1;
  background: linear-gradient(180deg, var(--usda-navy) 0%, var(--usda-navy-deep) 100%);
  border: 0;
}

.mobile-navigation .sidebar-inner {
  min-height: 100vh;
}

.page-heading,
.app-content > .container > .d-flex:first-of-type {
  gap: 1rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  color: var(--usda-ink);
  font-weight: 730;
  letter-spacing: -.025em;
}

h1.h3,
.h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.text-muted {
  color: var(--usda-muted) !important;
}

.card {
  overflow: hidden;
  background: var(--usda-surface);
  border: 1px solid var(--usda-border);
  border-radius: 1rem;
  box-shadow: var(--usda-shadow-sm);
}

.card-header,
.card-footer {
  padding: .95rem 1.15rem;
  background: #fff;
  border-color: var(--usda-border);
}

.card-body {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.btn {
  --bs-btn-font-weight: 650;
  --bs-btn-border-radius: .65rem;
  padding: .58rem .9rem;
  box-shadow: none !important;
}

.btn-sm {
  padding: .38rem .65rem;
  font-size: .78rem;
  border-radius: .5rem;
}

.btn-lg {
  padding: .78rem 1.1rem;
  font-size: .96rem;
}

.btn-primary {
  --bs-btn-bg: var(--usda-primary);
  --bs-btn-border-color: var(--usda-primary);
  --bs-btn-hover-bg: var(--usda-primary-dark);
  --bs-btn-hover-border-color: var(--usda-primary-dark);
  --bs-btn-active-bg: var(--usda-primary-dark);
  --bs-btn-active-border-color: var(--usda-primary-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--usda-primary);
  --bs-btn-border-color: #9fc7cb;
  --bs-btn-hover-bg: var(--usda-primary);
  --bs-btn-hover-border-color: var(--usda-primary);
}

.form-label {
  margin-bottom: .45rem;
  color: #3f5363;
  font-size: .82rem;
  font-weight: 650;
}

.form-control,
.form-select {
  min-height: 43px;
  color: #243b53;
  background-color: #fbfcfd;
  border-color: #cedae1;
  border-radius: .65rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.form-control-sm,
.form-select-sm {
  min-height: 37px;
}

.form-control-lg,
.form-select-lg {
  min-height: 50px;
  font-size: .95rem;
}

.form-control:focus,
.form-select:focus {
  background: #fff;
  border-color: #4baab2;
  box-shadow: 0 0 0 .22rem rgba(8, 127, 140, .11);
}

.form-control::placeholder {
  color: #9aaab5;
}

.form-text {
  color: #748896;
  font-size: .76rem;
}

.filter-bar {
  background: linear-gradient(180deg, #fff, #fbfcfd);
}

.filter-bar .form-label {
  color: #5d7282;
  font-weight: 650;
}

.filter-bar .form-control,
.filter-bar .form-select {
  width: 100%;
  min-width: 0;
}

.table {
  --bs-table-striped-bg: #f7f9fa;
  --bs-table-hover-bg: #f0f7f7;
  margin-bottom: 0;
  color: #344b5e;
  font-size: .82rem;
}

.table > :not(caption) > * > * {
  padding: .78rem .75rem;
  border-bottom-color: #e5ebef;
  vertical-align: middle;
}

.table > thead > tr > th {
  color: #627787;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .045em;
  white-space: nowrap;
  text-transform: uppercase;
  background: #f6f8fa;
  border-bottom-width: 1px;
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.table a {
  font-weight: 600;
}

.table-responsive {
  scrollbar-color: #b7c5cd #f6f8fa;
}

.badge {
  padding: .4em .62em;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .015em;
  border-radius: 999px;
}

.text-bg-success {
  color: #0d684f !important;
  background-color: #dff4e9 !important;
}

.text-bg-warning {
  color: #855816 !important;
  background-color: #fff0cf !important;
}

.text-bg-secondary {
  color: #536675 !important;
  background-color: #e9eef1 !important;
}

.text-bg-info {
  color: #176677 !important;
  background-color: #dff4f7 !important;
}

.text-bg-light {
  color: #526876 !important;
  background-color: #eef3f5 !important;
}

.pagination {
  flex-wrap: wrap;
  gap: .3rem;
}

.page-link {
  min-width: 36px;
  color: #426173;
  text-align: center;
  border-color: var(--usda-border);
  border-radius: .5rem !important;
}

.active > .page-link,
.page-link.active {
  background: var(--usda-primary);
  border-color: var(--usda-primary);
}

.modal-content {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 24px 70px rgba(9, 35, 58, .2);
}

.modal-header,
.modal-footer {
  padding: 1rem 1.25rem;
  border-color: var(--usda-border);
}

.modal-body {
  padding: 1.25rem;
}

.app-alert {
  display: flex;
  align-items: center;
  min-height: 52px;
  margin-bottom: 1.25rem;
  border: 0;
  border-left: 4px solid currentColor;
  box-shadow: var(--usda-shadow-sm);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  position: relative;
  min-height: 145px;
  padding: 1.2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--usda-border);
  border-radius: 1rem;
  box-shadow: var(--usda-shadow-sm);
}

.metric-card::after {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 85px;
  height: 85px;
  content: "";
  background: var(--metric-soft, #eef4f7);
  border-radius: 50%;
}

.metric-card.primary { --metric: var(--usda-primary); --metric-soft: #daf1f1; }
.metric-card.blue { --metric: var(--usda-blue); --metric-soft: #e3edff; }
.metric-card.emerald { --metric: var(--usda-emerald); --metric-soft: #def3eb; }
.metric-card.amber { --metric: var(--usda-amber); --metric-soft: #fff0d4; }
.metric-card.navy { --metric: var(--usda-navy); --metric-soft: #e4ecf2; }
.metric-card.slate { --metric: #637b8c; --metric-soft: #eaf0f3; }

.metric-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: .95rem;
  color: var(--metric);
  background: var(--metric-soft);
  border-radius: .7rem;
}

.metric-icon .ui-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.metric-label {
  color: var(--usda-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.metric-value {
  margin-top: .35rem;
  color: var(--usda-ink);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.metric-detail {
  margin-top: .45rem;
  color: #8394a0;
  font-size: .72rem;
}

.section-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--usda-border);
}

.section-title {
  margin: 0;
  color: var(--usda-ink);
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: -.01em;
}

.section-copy {
  margin: .2rem 0 0;
  color: var(--usda-muted);
  font-size: .76rem;
}

.amount-positive {
  color: var(--usda-emerald);
  font-weight: 720;
}

.login-body {
  background:
    radial-gradient(circle at 15% 15%, rgba(27, 174, 174, .16), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(45, 108, 223, .11), transparent 25%),
    linear-gradient(145deg, #eef5f6 0%, #f8fafb 50%, #edf3f7 100%);
}

.login-main {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 0;
}

.login-main::before,
.login-main::after {
  position: fixed;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(8, 127, 140, .09);
  border-radius: 50%;
}

.login-main::before {
  top: -18vw;
  right: -13vw;
  width: 42vw;
  height: 42vw;
}

.login-main::after {
  bottom: -20vw;
  left: -14vw;
  width: 38vw;
  height: 38vw;
}

.login-container {
  position: relative;
  z-index: 1;
  max-width: 470px;
}

.login-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(205, 219, 226, .9);
  border-radius: 1.25rem;
  box-shadow: 0 28px 75px rgba(21, 54, 79, .13);
  backdrop-filter: blur(16px);
}

.login-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--usda-primary), #27b6aa, #2d6cdf);
}

.login-content {
  padding: clamp(1.6rem, 5vw, 2.6rem);
}

.login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.35rem;
  color: var(--usda-primary);
  background: var(--usda-primary-soft);
  border-radius: 1rem;
}

.login-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-title {
  margin-bottom: .55rem;
  color: var(--usda-ink);
  font-size: 1.7rem;
  font-weight: 760;
  letter-spacing: -.035em;
}

.login-copy {
  margin: 0;
  color: var(--usda-muted);
  font-size: .9rem;
}

.banking-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(49, 203, 193, .16), transparent 28%),
    linear-gradient(135deg, var(--usda-navy), #164b68);
  border-radius: 1rem;
  box-shadow: var(--usda-shadow);
}

.banking-hero h1,
.banking-hero p {
  color: #fff;
}

.banking-hero p {
  margin: .35rem 0 0;
  color: #bcd2de;
  font-size: .85rem;
}

.banking-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 1rem;
}

.banking-hero-icon .ui-icon {
  width: 1.7rem;
  height: 1.7rem;
}

.upload-panel {
  margin-bottom: 1.5rem;
}

.file-upload {
  position: relative;
  padding: 1rem;
  text-align: center;
  background: #f6fbfb;
  border: 1px dashed #91c3c7;
  border-radius: .8rem;
}

.file-upload .form-control {
  background: #fff;
}

.banking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.banking-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--usda-border);
  border-radius: 1rem;
  box-shadow: var(--usda-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.banking-card:hover {
  box-shadow: var(--usda-shadow);
  transform: translateY(-2px);
}

.banking-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(45deg, #f4f7f8 25%, transparent 25%),
    linear-gradient(-45deg, #f4f7f8 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f4f7f8 75%),
    linear-gradient(-45deg, transparent 75%, #f4f7f8 75%);
  background-color: #fff;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
  border-bottom: 1px solid var(--usda-border);
}

.banking-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(21, 55, 79, .08));
}

.banking-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.1rem;
}

.banking-name {
  margin: 0;
  color: var(--usda-ink);
  font-size: 1rem;
  font-weight: 730;
}

.banking-owner {
  margin-top: .2rem;
  color: var(--usda-primary);
  font-size: .74rem;
  font-weight: 650;
}

.banking-note {
  flex: 1 1 auto;
  margin: .85rem 0 1rem;
  color: #5e7281;
  font-size: .83rem;
  line-height: 1.55;
  white-space: pre-line;
}

.empty-state {
  padding: 3.5rem 1.5rem;
  color: var(--usda-muted);
  text-align: center;
  background: #fff;
  border: 1px dashed #c8d5dc;
  border-radius: 1rem;
}

.empty-state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  color: var(--usda-primary);
  background: var(--usda-primary-soft);
  border-radius: 1rem;
}

.empty-state-icon .ui-icon {
  width: 1.6rem;
  height: 1.6rem;
}

@media (min-width: 992px) {
  .app-main {
    margin-left: 272px;
  }
}

@media (max-width: 1199.98px) {
  .summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .banking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .app-topbar {
    min-height: 70px;
    padding: .65rem 0;
  }

  .app-content {
    padding-top: 1.15rem;
  }

  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }

  .metric-card {
    min-height: 132px;
    padding: 1rem;
  }

  .metric-value {
    font-size: 1.25rem;
  }

  .metric-detail {
    display: none;
  }

  .banking-grid {
    grid-template-columns: 1fr;
  }

  .banking-hero {
    align-items: flex-start;
  }

  .card-body {
    padding: 1rem;
  }

  .table > :not(caption) > * > * {
    padding: .7rem .65rem;
  }

  .app-content > .container > .d-flex:first-child {
    align-items: flex-start !important;
  }
}

@media (max-width: 479.98px) {
  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card {
    min-height: 124px;
  }

  .metric-icon {
    width: 35px;
    height: 35px;
    margin-bottom: .7rem;
  }

  .metric-label {
    font-size: .64rem;
  }

  .metric-value {
    font-size: 1.08rem;
  }

  .login-main {
    align-items: flex-start;
    padding-top: 8vh;
  }

  .login-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .app-sidebar,
  .app-topbar,
  .app-footer,
  .btn,
  form {
    display: none !important;
  }

  .app-main {
    margin: 0 !important;
  }

  .app-content {
    padding: 0;
  }

  .card {
    box-shadow: none;
  }
}
