:root {
  --dp-bg: #f3f6fb;
  --dp-surface: #ffffff;
  --dp-surface-muted: #f8fafc;
  --dp-border: #dbe4ef;
  --dp-border-strong: #c8d4e3;
  --dp-text: #17212f;
  --dp-text-muted: #617081;
  --dp-primary: #0f766e;
  --dp-primary-soft: rgba(15, 118, 110, 0.12);
  --dp-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  --dp-radius: 1rem;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--dp-bg);
  color: var(--dp-text);
}

.content-wrapper,
.content-wrapper > .content,
.main-footer {
  background: transparent;
}

.content-wrapper .container-fluid {
  max-width: 98vw;
}

.main-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--dp-text-muted);
}

.main-header.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.dp-main-header .navbar-brand {
  font-weight: 600;
}

.dp-navbar-brand-logo {
  height: 28px;
  width: auto;
}

.dp-main-header .navbar-toggler {
  border-color: rgba(0, 0, 0, .1);
}

.dp-main-nav .nav-link,
.dp-navbar-controls .nav-link {
  white-space: nowrap;
}

.dp-main-nav .nav-link,
.dp-navbar-controls .nav-link,
.dropdown-menu .dropdown-item {
  border-radius: .75rem;
}

.dp-main-nav .nav-link.active,
.dp-main-nav .show > .nav-link,
.dp-navbar-controls .nav-link.active {
  color: var(--dp-primary) !important;
  background: var(--dp-primary-soft);
  font-weight: 600;
}

.dropdown-menu {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: .95rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: .5rem;
}

.dropdown-item {
  padding: .6rem .8rem;
}

.alert {
  border: 0;
  border-radius: .95rem;
  box-shadow: var(--dp-shadow);
}

.card,
.dp-panel {
  border: 1px solid rgba(219, 228, 239, 0.95);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow);
}

.card-header,
.dp-panel .card-header {
  background: transparent;
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
  padding: 1rem 1.25rem;
}

.card-body {
  padding: 1.25rem;
}

.btn {
  border-radius: .8rem;
  font-weight: 500;
}

.btn-sm {
  border-radius: .7rem;
}

.btn-primary {
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.12);
}

.table th,
.table td {
  vertical-align: middle;
}

.table thead th {
  border-top: 0;
  border-bottom-width: 1px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dp-text-muted);
}

.table-hover tbody tr:hover {
  background: rgba(15, 118, 110, 0.035);
}

.pagination {
  margin-bottom: 0;
}

.page-link {
  border-radius: .75rem !important;
  margin: 0 .15rem;
  border: 1px solid rgba(219, 228, 239, 0.95);
  color: var(--dp-text);
}

.page-item.active .page-link {
  background: var(--dp-primary);
  border-color: var(--dp-primary);
}

.form-control,
.custom-select,
.form-select,
select.form-control {
  height: calc(2.25rem + 2px);
  border-radius: .8rem;
  border-color: var(--dp-border-strong);
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  border-radius: .95rem;
}

.form-control:focus,
.custom-select:focus,
.form-select:focus,
.select2-container--default.select2-container--focus .select2-selection,
.select2-container--default .select2-selection--multiple:focus,
.select2-container--default .select2-selection--single:focus {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 .2rem rgba(15, 118, 110, 0.12);
}

.form-text,
small.text-muted,
.text-muted {
  color: var(--dp-text-muted) !important;
}

label {
  font-weight: 600;
  margin-bottom: .45rem;
}

.custom-control-label {
  font-weight: 500;
}

.select2-container .select2-selection--multiple,
.select2-container .select2-selection--single {
  min-height: calc(2.25rem + 2px);
  border: 1px solid var(--dp-border-strong);
  border-radius: .8rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.dp-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dp-page-kicker {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dp-primary);
  font-weight: 700;
  margin-bottom: .3rem;
}

.dp-page-title {
  font-size: 1.85rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  color: var(--dp-text);
}

.dp-page-subtitle {
  color: var(--dp-text-muted);
  margin: .45rem 0 0;
  max-width: 760px;
}

.dp-page-actions,
.dp-form-actions,
.dp-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.dp-toolbar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
}

.dp-toolbar .card-body {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.dp-filter-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.dp-filter-grid > * {
  min-width: 0;
}

.dp-col-2 { grid-column: span 2; }
.dp-col-3 { grid-column: span 3; }
.dp-col-4 { grid-column: span 4; }
.dp-col-6 { grid-column: span 6; }
.dp-col-8 { grid-column: span 8; }
.dp-col-12 { grid-column: span 12; }

.dp-stat-card .card-body {
  padding: 1.15rem 1.2rem;
}

.dp-stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dp-text-muted);
  margin-bottom: .4rem;
}

.dp-stat-value {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
}

.dp-stat-note {
  margin-top: .5rem;
  color: var(--dp-text-muted);
  font-size: .92rem;
}

.dp-table-card .card-body {
  padding: 0;
}

.dp-table-card .table {
  margin-bottom: 0;
}

.dp-table-card .table thead th,
.dp-table-card .table tbody td {
  padding: .95rem 1.25rem;
}

.dp-list-subtext {
  display: block;
  margin-top: .25rem;
  color: var(--dp-text-muted);
  font-size: .86rem;
}

.dp-empty-state {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--dp-text-muted);
}

.dp-empty-state i {
  font-size: 1.8rem;
  margin-bottom: .75rem;
  color: rgba(15, 118, 110, 0.5);
}

.dp-code-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--dp-primary);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
}

.dp-badge-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

.dp-badge-soft--success {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.dp-badge-soft--secondary {
  background: rgba(100, 116, 139, 0.14);
  color: #475569;
}

.dp-badge-soft--warning {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.dp-badge-soft--danger {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.dp-badge-soft--info {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

.dp-form-section + .dp-form-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(219, 228, 239, 0.95);
}

.dp-form-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.dp-form-section-copy {
  color: var(--dp-text-muted);
  margin-bottom: 1rem;
}

.dp-aside-card {
  background: var(--dp-surface-muted);
}

.dp-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: radial-gradient(circle at top, rgba(15, 118, 110, 0.12), transparent 35%), var(--dp-bg);
}

.dp-auth-wrap {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 480px);
  justify-content: center;
  gap: 1.5rem;
}

.dp-auth-brand,
.dp-auth-card {
  border: 1px solid rgba(219, 228, 239, 0.95);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.dp-auth-brand {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dp-auth-card {
  padding: 1.75rem;
}

.dp-auth-logo {
  max-height: 52px;
  width: auto;
}

.dp-auth-eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dp-primary);
  font-weight: 700;
  margin-bottom: .75rem;
}

.dp-auth-title {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: .75rem;
}

.dp-auth-copy {
  color: var(--dp-text-muted);
  line-height: 1.6;
}

.dp-auth-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.dp-auth-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--dp-text-muted);
}

.dp-auth-list li + li {
  margin-top: .75rem;
}

.dp-auth-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.18);
  box-shadow: inset 0 0 0 .18rem rgba(15, 118, 110, 0.45);
}

.dp-auth-card-header {
  margin-bottom: 1.5rem;
}

.dp-auth-card-title {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.dp-auth-card-copy {
  color: var(--dp-text-muted);
  margin-bottom: 0;
}

.login-legal-buttons {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.login-legal-buttons .btn {
  flex: 1 1 0;
  min-width: 140px;
}

.login-legal-content {
  line-height: 1.55;
  word-break: break-word;
}

.login-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.login-legal-content th,
.login-legal-content td {
  border: 1px solid #dee2e6;
  padding: .5rem;
  vertical-align: top;
}

.login-legal-content h1,
.login-legal-content h2,
.login-legal-content h3,
.login-legal-content h4,
.login-legal-content h5,
.login-legal-content h6 {
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.login-legal-content p:last-child {
  margin-bottom: 0;
}

.dp-navbar-controls {
  gap: .5rem;
}

.dp-navbar-location {
  flex: 0 1 240px;
  min-width: 0;
}

.dp-navbar-location form {
  width: 100%;
}

.dp-navbar-user {
  min-width: 0;
}

.dp-navbar-user .nav-link {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dp-topnav-select {
  min-width: 240px;
  width: 100%;
  max-width: 100%;
}

.dp-roster-table td,
.dp-roster-table th {
  vertical-align: middle;
}

.dp-roster-table {
  table-layout: fixed;
}

.dp-roster-table th.dp-col-employee,
.dp-roster-table td.dp-col-employee {
  width: 360px;
  min-width: 360px;
  max-width: 460px;
}

.dp-roster-table th.dp-col-day,
.dp-roster-table td.dp-col-day {
  width: 38px;
  min-width: 38px;
  max-width: 38px;
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.dp-roster-table th.dp-col-hours,
.dp-roster-table td.dp-col-hours {
  width: 82px;
  min-width: 82px;
  max-width: 82px;
}

.dp-roster-table th.dp-col-hours-incl,
.dp-roster-table td.dp-col-hours-incl {
  width: 92px;
  min-width: 92px;
  max-width: 92px;
}

.dp-roster-table thead th.dp-col-day {
  font-size: 12px;
  line-height: 1.05;
}

.dp-roster-table thead th.dp-col-day .small {
  font-size: 10px;
}

.dp-roster-cell .font-weight-bold {
  font-size: 12px;
}

.dp-roster-select {
  font-size: 12px;
}

.dp-sticky-col {
  position: sticky;
  left: 0;
  z-index: 4;
  background: #fff;
}

.dp-roster-table thead th.dp-sticky-col {
  z-index: 6;
}

.dp-group-row td,
.dp-group-row td.dp-sticky-col {
  background: #f1f3f5 !important;
}

.dp-roster-cell {
  padding: 0 !important;
  text-align: center;
}

.dp-roster-select {
  width: 100%;
  height: 34px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none !important;
  padding-right: 0 !important;
  outline: none;
}

.dp-roster-select:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.dp-roster-select:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 123, 255, .25);
}

.dp-roster-cell:hover .dp-roster-select {
  background: rgba(0, 0, 0, .02);
}

.form-select {
  display: block;
  width: 100%;
  padding: .375rem 2rem .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23617081' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .65rem center;
  background-size: 14px 14px;
  appearance: none;
}

.g-3 {
  margin-right: -.75rem;
  margin-left: -.75rem;
}

.g-3 > [class*='col-'] {
  padding-right: .75rem;
  padding-left: .75rem;
}

.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.text-end { text-align: right !important; }
.bg-success.badge, .badge.bg-success { background-color: #28a745 !important; color: #fff; }
.bg-secondary.badge, .badge.bg-secondary { background-color: #6c757d !important; color: #fff; }

@media (max-width: 991.98px) {
  .dp-auth-wrap {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .dp-filter-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .dp-col-2,
  .dp-col-3,
  .dp-col-4,
  .dp-col-6,
  .dp-col-8,
  .dp-col-12 {
    grid-column: span 6;
  }
}


@media (max-width: 1199.98px) and (min-width: 768px) {
  .dp-main-header .navbar-brand {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dp-main-nav .nav-link,
  .dp-navbar-controls .nav-link {
    padding-left: .55rem;
    padding-right: .55rem;
  }

  .dp-navbar-location {
    flex-basis: 190px;
    max-width: 220px;
  }

  .dp-topnav-select {
    min-width: 170px;
  }

  .dp-navbar-user .nav-link {
    max-width: 170px;
  }
}

@media (max-width: 991.98px) {
  .main-header .container-fluid {
    align-items: flex-start;
  }

  .dp-main-header .navbar-toggler {
    max-width: calc(100% - 56px);
    margin-right: .5rem !important;
  }

  .dp-main-header .brand-text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }

  .dp-main-header .navbar-collapse {
    width: 100%;
    margin-top: .25rem;
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding-top: .25rem;
    padding-bottom: .05rem;
  }

  .dp-main-nav,
  .dp-navbar-controls {
    width: 100%;
  }

  .dp-navbar-controls {
    margin-left: 0 !important;
    align-items: stretch !important;
    gap: .25rem;
  }

  .dp-main-nav .nav-item,
  .dp-navbar-controls .nav-item {
    width: 100%;
    margin-bottom: 0;
  }

  .dp-main-nav .nav-link,
  .dp-navbar-controls .nav-link {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    padding-left: .85rem;
    padding-right: .85rem;
    padding-top: .35rem;
    padding-bottom: .35rem;
  }

  .dp-main-nav .nav-link.active,
  .dp-main-nav .show > .nav-link,
  .dp-navbar-controls .nav-link.active {
    display: inline-flex;
    width: auto;
  }

  .dp-navbar-location {
    flex: 0 0 100%;
    max-width: none;
    margin-right: 0 !important;
    margin-bottom: .35rem;
  }

  .dp-navbar-location form {
    max-width: 320px;
  }

  .dp-topnav-select {
    min-width: 0;
    width: 100%;
  }

  .dp-navbar-user {
    flex: 0 0 100%;
    max-width: none;
  }

  .dp-navbar-user .nav-link {
    max-width: none;
  }

  .dropdown-menu {
    min-width: 240px;
    max-width: min(320px, 100%);
    margin-top: .25rem;
    padding: .3rem;
    border-radius: .8rem;
  }

  .dropdown-item {
    padding: .45rem .6rem;
  }

  .dp-navbar-user .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    max-width: none;
    margin-top: .1rem;
  }

  .dp-main-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: auto;
    margin-left: .35rem;
  }

  .dp-page-header {
    flex-direction: column;
  }

  .dp-page-actions,
  .dp-form-actions,
  .dp-inline-actions {
    width: 100%;
  }

  .dp-page-actions > .btn,
  .dp-page-actions > form,
  .dp-page-actions > a {
    width: 100%;
  }

  .dp-table-card .table thead th,
  .dp-table-card .table tbody td {
    padding: .85rem .9rem;
  }

  .dp-filter-grid {
    grid-template-columns: 1fr;
  }

  .dp-col-2,
  .dp-col-3,
  .dp-col-4,
  .dp-col-6,
  .dp-col-8,
  .dp-col-12 {
    grid-column: span 1;
  }
}


.dp-tab-pills {
  gap: .45rem;
}

.dp-tab-pills .nav-link {
  border-radius: .8rem;
  color: var(--dp-text-muted);
  font-weight: 600;
  padding: .7rem 1rem;
}

.dp-tab-pills .nav-link:hover {
  background: rgba(15, 118, 110, 0.06);
  color: var(--dp-text);
}

.dp-tab-pills .nav-link.active {
  background: var(--dp-primary-soft);
  color: var(--dp-primary);
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
}

.dp-section-tabs {
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: .1rem;
}

.dp-section-tabs .nav-item {
  flex: 0 0 auto;
}

.dp-summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 1rem;
}

.dp-summary-tile {
  border: 1px solid rgba(219, 228, 239, 0.95);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 1.1rem;
  box-shadow: var(--dp-shadow);
}

.dp-summary-tile-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--dp-text-muted);
  margin-bottom: .4rem;
}

.dp-summary-tile-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dp-text);
}

.dp-summary-tile-note {
  margin-top: .35rem;
  font-size: .87rem;
  color: var(--dp-text-muted);
}

.dp-sticky-column {
  position: sticky;
  top: 5.5rem;
}

.dp-panel-section + .dp-panel-section {
  margin-top: 1rem;
}

.dp-panel-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.dp-panel-subtitle {
  margin: .35rem 0 0;
  color: var(--dp-text-muted);
}

.dp-info-list {
  display: grid;
  gap: .9rem;
}

.dp-info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.dp-info-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dp-text-muted);
}

.dp-info-value {
  text-align: right;
  font-weight: 600;
  color: var(--dp-text);
}

.dp-help-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: var(--dp-text-muted);
}

.dp-help-list li + li {
  margin-top: .45rem;
}

.dp-system-preview-box {
  min-height: 86px;
  background: var(--dp-surface-muted);
  border: 1px dashed var(--dp-border-strong);
  border-radius: .95rem;
  padding: 1rem;
}

.dp-system-preview-box--small {
  min-height: 70px;
}

.dp-system-preview-logo,
.dp-system-preview-favicon {
  display: block;
  width: auto;
  max-width: 100%;
}

.dp-system-preview-logo {
  max-height: 54px;
}

.dp-system-preview-favicon {
  max-height: 32px;
}

.dp-rich-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}

.dp-rich-editor {
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--dp-border-strong);
  border-radius: .95rem;
  padding: 1rem;
  overflow: auto;
}

.dp-rich-editor:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 .2rem rgba(15, 118, 110, 0.12);
}

.dp-rich-editor:empty:before {
  content: 'Hier Inhalt eingeben …';
  color: #6c757d;
}

.dp-rich-editor table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.dp-rich-editor th,
.dp-rich-editor td {
  border: 1px solid #dee2e6;
  padding: .5rem;
  vertical-align: top;
}

.dp-rich-editor h1,
.dp-rich-editor h2,
.dp-rich-editor h3,
.dp-rich-editor h4,
.dp-rich-editor h5,
.dp-rich-editor h6 {
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.dp-auth-shell {
  width: 100%;
  max-width: 560px;
}

.dp-auth-card--single {
  padding: 2rem;
}

.dp-auth-shell-brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
}

.dp-auth-shell-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dp-text);
}


.dp-auth-inline-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

.dp-auth-shell-note {
  margin-top: 1rem;
  text-align: center;
  color: var(--dp-text-muted);
}

@media (max-width: 991.98px) {
  .dp-page-header {
    flex-direction: column;
  }

  .dp-sticky-column {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .dp-auth-card--single {
    padding: 1.4rem;
  }

  .dp-page-title {
    font-size: 1.6rem;
  }
}
