/* Estilo só do campo de busca do Simple-DataTables */
.datatable-input {
  width: 250px;            /* largura fixa */
  margin-left: 1rem;
  padding: 6px 12px;       /* padding estilo Bootstrap */
  border: 1px solid #ced4da;
  border-radius: 0.375rem; /* borda arredondada */
  font-size: 0.875rem;     /* fonte menor */
  outline: none;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.datatable-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Estilo só para o select de "entries per page" */
.datatable-selector {
  display: inline-block;
  width: auto;              /* mantém compacto */
  margin-right: 1rem;
  padding: 6px 30px 6px 12px; 
  font-size: 0.875rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  appearance: none;          /* remove estilo nativo */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"); 
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.datatable-selector:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* container da parte superior (select + search) */
.datatable-top {
  display: flex;
  justify-content: space-between; /* joga o select p/ esquerda e o search p/ direita */
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 1rem; /* espaço abaixo */
  padding: 0 0.5rem;   /* espaço lateral */
  margin-top: 1rem;
}.truncate {
  white-space: nowrap;       /* impede o texto de quebrar linha */
  overflow: hidden;          /* esconde o que passa do limite da div */
  text-overflow: ellipsis;   /* adiciona "..." no fim */
}

/* estilização do select (linhas por página)
.datatable-selector {
  margin-left: 0.5rem;
  padding: 6px 30px 6px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
} */

/* estilização do input (search) */
.datatable-input {
  margin-right: 0.5rem;
  padding: 6px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

/* Seleciona o container de info do Simple-DataTables */
.datatable-info {
    padding: 1rem 0 0 1rem;   /* espaço lateral */
}

.clients-table code {
  font-size: inherit;
}


/* Delay no alert*/
.alert {
  z-index: 999; 
  right: 20px; 
  top: 70px;
  opacity: 0;
  animation: fadeIn 1s forwards; /* 0.5s de duração */

}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.datatable-pagination ul,
.datatable-pagination li {
  list-style: none !important;
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
}

.datatable-pagination ul {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.datatable-pagination a {
  padding: 6px 12px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  color: #495057;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.datatable-pagination a:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
  color: #000;
}

.datatable-pagination .active a {
  background-color: #0d6efd;
  color: #fff !important;
  border-color: #0d6efd;
  font-weight: 500;
}

.datatable-pagination a:active {
  transform: scale(0.95);
}

.datatable-pagination .disabled a {
  pointer-events: none;
  opacity: 0.5;
}

.datatable-pagination .datatable-active a {
  background-color: grey;
  color: #fff !important;
}
.restore-options {
  border: 1px solid #e7eaee;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 16px;
}

.restore-options__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.restore-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.restore-check {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.restore-check:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.restore-check .form-check-input {
  margin: 0;
  flex: 0 0 auto;
}

.restore-check__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  font-size: 18px;
}

.restore-switch .form-check-input {
  width: 44px;
  height: 22px;
  margin-top: 0;
  cursor: pointer;
}

.restore-schedule {
  border-top: 1px solid #e7eaee;
  padding-top: 16px;
}

@media (max-width: 767.98px) {
  .restore-check-grid {
    grid-template-columns: 1fr;
  }
}

.restore-queue-server {
  border: 1px solid #e7eaee;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.restore-queue-server + .restore-queue-server {
  margin-top: 14px;
}

.restore-queue-server__title {
  font-weight: 600;
  margin-bottom: 12px;
}

.restore-queue-server__notice {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #ffe0a3;
  border-radius: 6px;
  background: #fff8e6;
  color: #8a5a00;
  padding: 8px 10px;
  font-size: 13px;
}

.restore-status-badge {
  min-width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px 4px 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}

.restore-status-badge__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  border-radius: 50%;
  background: #fff;
  font-size: 15px;
  line-height: 1;
}

.restore-status-badge__icon .ti {
  font-weight: 700;
}

.restore-status-badge--primary {
  background: #2382d4;
}

.restore-status-badge--primary .restore-status-badge__icon {
  color: #2382d4;
}

.restore-status-badge--success {
  background: #4caf59;
}

.restore-status-badge--success .restore-status-badge__icon {
  color: #4caf59;
}

.restore-status-badge--danger {
  background: #ff5d62;
}

.restore-status-badge--danger .restore-status-badge__icon {
  color: #ff5d62;
}

.restore-status-badge--warning {
  background: #f0ad36;
}

.restore-status-badge--warning .restore-status-badge__icon {
  color: #f0ad36;
}

.restore-status-badge--info {
  background: #2ea6c9;
}

.restore-status-badge--info .restore-status-badge__icon {
  color: #2ea6c9;
}

.restore-status-badge--secondary {
  background: #7b8794;
}

.restore-status-badge--secondary .restore-status-badge__icon {
  color: #7b8794;
}

.restore-cancel-summary {
  border: 1px solid #e7eaee;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px;
}

.modal-info-restauracao__dialog {
  max-width: min(720px, calc(100vw - 24px));
}

.restore-info-summary {
  max-height: min(60vh, 520px);
  overflow-y: auto;
  border: 1px solid #e7eaee;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px;
}

.restore-info-summary__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.restore-info-summary__row + .restore-info-summary__row {
  margin-top: 10px;
}

.restore-info-summary__row span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: pre-wrap;
}

.restore-info-summary__message {
  max-height: 220px;
  overflow-y: auto;
}

.profile-theme-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-theme-option {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.profile-theme-option__swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #dfe4ea;
  flex: 0 0 auto;
}

.profile-theme-option__swatch--light {
  background: linear-gradient(135deg, #fff 0 50%, #e8eef5 50% 100%);
}

.profile-theme-option__swatch--dark {
  background: linear-gradient(135deg, #111821 0 50%, #2b3646 50% 100%);
}

.btn-check:checked + .profile-theme-option {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.15);
}

.auth-main .auth-wrapper.v3 .auth-form {
  background:
    linear-gradient(rgba(var(--bs-primary-rgb), 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--bs-primary-rgb), 0.22) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(var(--bs-primary-rgb), 0.12), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(var(--bs-primary-rgb), 0.1), transparent 30%),
    var(--bs-body-bg);
  background-size: 42px 42px, 42px 42px, cover, cover, cover;
}

.auth-main .auth-wrapper.v3 .auth-form:after {
  background: transparent;
  opacity: 1;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.login-advice {
  position: relative;
  margin: 10px 4px 8px;
  padding: 12px 14px;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.22);
  border-radius: 8px;
  background: rgba(var(--bs-primary-rgb), 0.08);
  color: var(--bs-body-color);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.login-advice:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(var(--bs-primary-rgb), 0.22);
  border-left: 1px solid rgba(var(--bs-primary-rgb), 0.22);
  border-right: 1px solid rgba(var(--bs-primary-rgb), 0.22);
  border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.22);
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
}

.first-access-page .auth-main .auth-wrapper .auth-form .first-access-card {
  max-width: 620px;
}

.first-access-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--bs-border-color);
  border-radius: 8px;
  background: rgba(var(--bs-primary-rgb), 0.04);
}

.first-access-summary__item {
  min-width: 0;
}

.first-access-summary__item strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--pc-heading-color);
}

.first-access-summary__item:last-child {
  grid-column: 1 / -1;
}

.first-access-notice {
  position: static;
  inset: auto;
  margin: 0;
  opacity: 1;
  animation: none;
  line-height: 1.55;
  text-align: left;
}

@media (max-width: 575.98px) {
  .first-access-page .auth-main .auth-wrapper.v3 .auth-form {
    padding: 16px;
  }

  .first-access-summary {
    grid-template-columns: 1fr;
  }

  .first-access-summary__item:last-child {
    grid-column: auto;
  }
}

.login-provider-btn {
  border-color: rgba(var(--bs-primary-rgb), 0.2);
}

.admin-metric-card {
  min-height: 132px;
}

.admin-metric-card__footer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #edf0f4;
  color: #6c757d;
  font-size: 0.8rem;
}

.admin-bar-row + .admin-bar-row,
.admin-list-line + .admin-list-line {
  margin-top: 14px;
}

.admin-progress {
  height: 6px;
  margin-top: 8px;
  background: #edf0f4;
}

.ticket-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-message {
  display: flex;
  width: 100%;
}

.ticket-row {
  cursor: pointer;
}

.ticket-row-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ticket-row-link:hover,
.ticket-row-link:focus {
  color: inherit;
  text-decoration: none;
}

.ticket-message--mine {
  justify-content: flex-end;
}

.ticket-message--other {
  justify-content: flex-start;
}

.ticket-message__bubble {
  max-width: min(78%, 640px);
  padding: 12px 14px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #f6f8fb;
  color: var(--bs-body-color);
}

.ticket-message--mine .ticket-message__bubble {
  background: rgba(var(--bs-primary-rgb), 0.1);
  border-color: rgba(var(--bs-primary-rgb), 0.22);
}

.ticket-message--internal .ticket-message__bubble {
  border-style: dashed;
}

.ticket-message__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.78rem;
}

.ticket-message__meta span {
  color: #6c757d;
  white-space: nowrap;
}

.ticket-message__bubble p {
  white-space: pre-wrap;
}

.ticket-message__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

@media (max-width: 575.98px) {
  .ticket-message__bubble {
    max-width: 92%;
  }

  .ticket-message__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .restore-info-summary__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

[data-pc-theme="dark"] {
  --bs-body-bg: #101418;
  --bs-body-color: #d8dee6;
  --pc-heading-color: #f4f7fb;
  --pc-sidebar-background: #151a21;
  --pc-sidebar-color: #cfd7e3;
  --pc-sidebar-caption-color: #8f9bad;
  --pc-active-background: #202833;
  --pc-header-background: #151a21;
  --pc-header-color: #f4f7fb;
  --pc-header-submenu-background: #1b222c;
  --pc-header-submenu-color: #cfd7e3;
  --bs-card-bg: #171d25;
  --bs-card-border-color: #283241;
  --bs-border-color: #2c3746;
  --bs-tertiary-bg: #202833;
  --bs-secondary-color: #a8b3c2;
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
}

[data-pc-theme="dark"] body,
[data-pc-theme="dark"] .pc-container,
[data-pc-theme="dark"] .pc-content,
[data-pc-theme="dark"] .auth-main,
[data-pc-theme="dark"] .maintenance-block {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
}

[data-pc-theme="dark"] .pc-sidebar,
[data-pc-theme="dark"] .pc-header,
[data-pc-theme="dark"] .pc-footer {
  background: #151a21;
  color: #d8dee6;
  border-color: #283241;
  box-shadow: none;
}

[data-pc-theme="dark"] .pc-link,
[data-pc-theme="dark"] .pc-mtext,
[data-pc-theme="dark"] .pc-micon,
[data-pc-theme="dark"] .pc-caption label,
[data-pc-theme="dark"] .pc-head-link,
[data-pc-theme="dark"] .dropdown-item {
  color: #cfd7e3;
}

[data-pc-theme="dark"] .pc-link:hover,
[data-pc-theme="dark"] .pc-head-link:hover,
[data-pc-theme="dark"] .dropdown-item:hover {
  color: #fff;
  background: #202833;
}

[data-pc-theme="dark"] .card,
[data-pc-theme="dark"] .modal-content,
[data-pc-theme="dark"] .dropdown-menu,
[data-pc-theme="dark"] .table-card {
  --bs-card-bg: #171d25;
  background: #171d25;
  color: #d8dee6;
  border-color: #283241;
  box-shadow: none;
}

[data-pc-theme="dark"] h1,
[data-pc-theme="dark"] h2,
[data-pc-theme="dark"] h3,
[data-pc-theme="dark"] h4,
[data-pc-theme="dark"] h5,
[data-pc-theme="dark"] h6,
[data-pc-theme="dark"] .modal-title,
[data-pc-theme="dark"] .form-label,
[data-pc-theme="dark"] strong {
  color: #f4f7fb;
}

[data-pc-theme="dark"] .text-muted {
  color: #98a6b7 !important;
}

[data-pc-theme="dark"] .table,
[data-pc-theme="dark"] .datatable-table {
  --bs-table-bg: #171d25;
  --bs-table-color: #d8dee6;
  --bs-table-border-color: #283241;
  --bs-table-hover-bg: #202833;
  --bs-table-hover-color: #fff;
  color: #d8dee6;
  border-color: #283241;
}

[data-pc-theme="dark"] .table-light {
  --bs-table-bg: #202833;
  --bs-table-color: #f4f7fb;
  --bs-table-border-color: #2c3746;
}

[data-pc-theme="dark"] .bg-light,
[data-pc-theme="dark"] .accordion-body.bg-light {
  background: #121820 !important;
  color: #d8dee6;
}

[data-pc-theme="dark"] .form-control,
[data-pc-theme="dark"] .form-select,
[data-pc-theme="dark"] .datatable-input,
[data-pc-theme="dark"] .datatable-selector {
  background-color: #10161d;
  border-color: #334052;
  color: #f4f7fb;
}

[data-pc-theme="dark"] .form-control::placeholder,
[data-pc-theme="dark"] .datatable-input::placeholder {
  color: #8390a2;
}

[data-pc-theme="dark"] .form-control:focus,
[data-pc-theme="dark"] .form-select:focus,
[data-pc-theme="dark"] .datatable-input:focus,
[data-pc-theme="dark"] .datatable-selector:focus {
  background-color: #10161d;
  border-color: var(--bs-primary);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.2);
}

[data-pc-theme="dark"] .modal-header,
[data-pc-theme="dark"] .modal-footer,
[data-pc-theme="dark"] .dropdown-divider {
  border-color: #283241;
}

[data-pc-theme="dark"] .dropdown-notification {
  background: #171d25;
  border-color: #283241;
  color: #d8dee6;
}

[data-pc-theme="dark"] .dropdown-notification .dropdown-header {
  background: #171d25;
  color: #f4f7fb;
}

[data-pc-theme="dark"] .dropdown-notification .header-notification-scroll,
[data-pc-theme="dark"] .dropdown-notification .list-group,
[data-pc-theme="dark"] .dropdown-notification .list-group-flush {
  background: #171d25;
}

[data-pc-theme="dark"] .dropdown-notification .list-group-item,
[data-pc-theme="dark"] .dropdown-notification .list-group-item-action {
  --bs-list-group-bg: #171d25;
  --bs-list-group-color: #d8dee6;
  --bs-list-group-border-color: #283241;
  --bs-list-group-action-color: #d8dee6;
  --bs-list-group-action-hover-color: #fff;
  --bs-list-group-action-hover-bg: #202833;
  --bs-list-group-action-active-color: #fff;
  --bs-list-group-action-active-bg: #202833;
  background: #171d25;
  border-color: #283241;
  color: #d8dee6;
}

[data-pc-theme="dark"] .pc-header .dropdown-notification .list-group-item-action:hover,
[data-pc-theme="dark"] .pc-header .dropdown-notification .list-group-item-action:focus,
[data-pc-theme="dark"] .pc-header .dropdown-notification .list-group-item-action:active {
  background: #202833;
  color: #fff;
}

[data-pc-theme="dark"] .dropdown-notification .notification-item h6 {
  color: #f4f7fb;
}

[data-pc-theme="dark"] .dropdown-notification .avtar.bg-light-primary {
  background: rgba(var(--bs-primary-rgb), 0.16) !important;
}

[data-pc-theme="dark"] .dropdown-notification .notification-remove {
  color: #ff9a9a;
}

[data-pc-theme="dark"] .dropdown-notification .notification-remove:hover,
[data-pc-theme="dark"] .dropdown-notification .notification-remove:focus {
  color: #ffb8b8;
  background: transparent;
}

[data-pc-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%);
}

[data-pc-theme="dark"] .datatable-pagination a {
  background: #171d25;
  border-color: #2c3746;
  color: #cfd7e3;
}

[data-pc-theme="dark"] .datatable-pagination a:hover {
  background: #202833;
  color: #fff;
}

[data-pc-theme="dark"] .restore-options,
[data-pc-theme="dark"] .restore-check,
[data-pc-theme="dark"] .restore-queue-server,
[data-pc-theme="dark"] .restore-cancel-summary,
[data-pc-theme="dark"] .restore-info-summary {
  background: #171d25;
  border-color: #283241;
  color: #d8dee6;
}

[data-pc-theme="dark"] .restore-schedule {
  border-color: #283241;
}

[data-pc-theme="dark"] .restore-switch .form-check-input {
  background-color: #202833;
  border-color: #3a4657;
}

[data-pc-theme="dark"] .restore-switch .form-check-input:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.18);
}

[data-pc-theme="dark"] .restore-switch .form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

[data-pc-theme="dark"] .restore-queue-server__notice {
  background: #2a2110;
  border-color: #6b4a12;
  color: #ffd98a;
}

[data-pc-theme="dark"] .profile-theme-option {
  background: #171d25;
  border-color: #283241;
  color: #d8dee6;
}

[data-pc-theme="dark"] .admin-metric-card__footer {
  border-color: #283241;
  color: #98a6b7;
}

[data-pc-theme="dark"] .admin-progress {
  background: #283241;
}

[data-pc-theme="dark"] .admin-dashboard-list,
[data-pc-theme="dark"] .admin-dashboard-list .list-group-item,
[data-pc-theme="dark"] .admin-dashboard-list .list-group-item-action {
  --bs-list-group-bg: #171d25;
  --bs-list-group-color: #d8dee6;
  --bs-list-group-border-color: #283241;
  --bs-list-group-action-color: #d8dee6;
  --bs-list-group-action-hover-color: #fff;
  --bs-list-group-action-hover-bg: #202833;
  background: #171d25;
  border-color: #283241;
  color: #d8dee6;
}

[data-pc-theme="dark"] .admin-dashboard-list .list-group-item-action:hover,
[data-pc-theme="dark"] .admin-dashboard-list .list-group-item-action:focus {
  background: #202833;
  color: #fff;
}

[data-pc-theme="dark"] .ticket-message__bubble {
  background: #202833;
  border-color: #344155;
  color: #d8dee6;
}

[data-pc-theme="dark"] .ticket-message--mine .ticket-message__bubble {
  background: rgba(var(--bs-primary-rgb), 0.2);
  border-color: rgba(var(--bs-primary-rgb), 0.34);
}

[data-pc-theme="dark"] .ticket-message__meta span {
  color: #98a6b7;
}

[data-pc-theme="dark"] .auth-main .auth-wrapper.v3 .auth-form {
  background:
    linear-gradient(rgba(var(--bs-primary-rgb), 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--bs-primary-rgb), 0.14) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(var(--bs-primary-rgb), 0.14), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(var(--bs-primary-rgb), 0.1), transparent 30%),
    var(--bs-body-bg);
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-size: 42px 42px, 42px 42px, cover, cover, cover;
}

[data-pc-theme="dark"] .auth-main .auth-wrapper.v3 .auth-form:after {
  background: transparent;
  opacity: 1;
}

[data-pc-theme="dark"] .login-advice {
  background: rgba(var(--bs-primary-rgb), 0.14);
  border-color: rgba(var(--bs-primary-rgb), 0.3);
  color: #e8eef7;
}

[data-pc-theme="dark"] .login-provider-btn {
  background: #171d25 !important;
  border-color: #344155;
  color: #d8dee6 !important;
}

[data-pc-theme="dark"] .notifier {
  background: #fff;
  color: #555;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 15px 0 rgba(0, 0, 0, 0.08);
}

[data-pc-theme="dark"] .notifier-title {
  color: #222;
}

[data-pc-theme="dark"] .notifier-body {
  color: #555;
}

[data-pc-theme="dark"] .notifier-close {
  color: #777;
  filter: none;
}

[data-pc-theme="dark"] .notifier-close:hover,
[data-pc-theme="dark"] .notifier-close:focus {
  color: #333;
  background: #eee;
}
