/* LicensingPortal Enterprise Admin – shared shell */
:root {
  --lp-navy: #003366;
  --lp-navy-hover: #00264d;
  --lp-blue-link: #0f52ba;
  --lp-text: #0f172a;
  --lp-text-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-bg-page: #f8fafc;
  --lp-sidebar-active-bg: #e8f4fc;
  --lp-green: #16a34a;
  --lp-red: #dc2626;
  --lp-orange: #ea580c;
  --radius: 8px;
  --radius-pill: 9999px;
  --sidebar-width: 260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.lp-body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: var(--lp-text);
  background: var(--lp-bg-page);
  min-height: 100vh;
}

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

/* ----- Sidebar ----- */
.lp-sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 24px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
}

.lp-logo__mark {
  width: 40px;
  height: 40px;
  background: var(--lp-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}

.lp-logo__mark svg {
  width: 28px;
  height: 28px;
  display: block;
}

.lp-logo__text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.2;
}

.lp-logo__text span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lp-text-muted);
}

.lp-nav {
  padding: 16px 12px;
  flex: 1;
}

.lp-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--lp-text-muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 4px;
  border-left: 4px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-nav-item i {
  width: 20px;
  text-align: center;
  color: inherit;
}

.lp-nav-item:hover {
  background: #f8fafc;
  color: var(--lp-text);
}

.lp-nav-item.is-active {
  background: var(--lp-sidebar-active-bg);
  color: var(--lp-blue-link);
  border-left-color: var(--lp-navy);
}

/* ----- Main column ----- */
.lp-main-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--lp-bg-page);
}

.lp-topbar {
  height: 64px;
  flex-shrink: 0;
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 24px;
}

.lp-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.lp-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}

.lp-search input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: none;
  border-radius: var(--radius);
  background: #f1f5f9;
  font-size: 14px;
  outline: none;
}

.lp-search input:focus {
  box-shadow: 0 0 0 1px var(--lp-navy);
}

.lp-topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.lp-icon-btn {
  position: relative;
  background: none;
  border: none;
  padding: 8px;
  color: #64748b;
  cursor: pointer;
  border-radius: var(--radius);
}

.lp-icon-btn:hover {
  color: var(--lp-text);
  background: #f1f5f9;
}

a.lp-icon-btn {
  text-decoration: none;
  color: inherit;
}

a.lp-icon-btn:hover {
  color: var(--lp-text);
}

.lp-icon-btn .lp-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
}

.lp-icon-btn.lp-bell--unread .lp-dot {
  display: block;
}

.lp-topbar-divider {
  width: 1px;
  height: 24px;
  background: var(--lp-border);
}

.lp-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.lp-profile span {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

/* Topbar: nama + avatar → profile.html (scoped agar tidak tertimpa + tanpa underline) */
.lp-topbar .lp-topbar-actions a.lp-topbar-profile,
.lp-topbar .lp-topbar-actions a.lp-topbar-profile:visited,
.lp-topbar .lp-topbar-actions a.lp-topbar-profile:hover,
.lp-topbar .lp-topbar-actions a.lp-topbar-profile:focus,
.lp-topbar .lp-topbar-actions a.lp-topbar-profile:active {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-underline-position: unset;
}

.lp-topbar .lp-topbar-actions a.lp-topbar-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 8px 5px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.lp-topbar .lp-topbar-actions a.lp-topbar-profile:hover {
  background: #f1f5f9;
}

.lp-topbar .lp-topbar-actions a.lp-topbar-profile:focus-visible {
  outline: 2px solid rgba(0, 51, 102, 0.35);
  outline-offset: 2px;
}

.lp-topbar .lp-topbar-actions a.lp-topbar-profile:visited {
  color: inherit;
}

.lp-topbar .lp-topbar-actions a.lp-topbar-profile .lp-avatar {
  display: block;
  flex-shrink: 0;
}

.lp-topbar .lp-topbar-actions a.lp-topbar-profile .lp-topbar-profile__name {
  display: inline-block;
  height: 36px;
  line-height: 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  text-decoration: none !important;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

/* Fallback bila link profil dipakai di luar .lp-topbar */
a.lp-topbar-profile,
a.lp-topbar-profile:visited,
a.lp-topbar-profile:hover,
a.lp-topbar-profile:focus,
a.lp-topbar-profile:active {
  text-decoration: none !important;
}

.lp-profile-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  font-size: 14px;
}

.lp-profile-dl dt {
  margin: 0;
  color: var(--lp-text-muted);
  font-weight: 600;
}

.lp-profile-dl dd {
  margin: 0;
  color: var(--lp-text);
}

/* ----- Modal konfirmasi (hapus license, dll.) ----- */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.lp-modal__box {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  border: 1px solid var(--lp-border);
}

.lp-modal__box h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-modal__box p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lp-text-muted);
}

.lp-modal__box--notice {
  max-width: 390px;
  text-align: center;
  padding-top: 26px;
}

.lp-modal__box--notice .lp-modal__actions {
  justify-content: center;
}

.lp-modal__notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--lp-green);
  font-size: 18px;
}

.lp-modal__notice-icon--error {
  background: #fee2e2;
  color: var(--lp-red);
}

.lp-modal__link-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 18px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.lp-modal__link-row code {
  min-width: 0;
  flex: 1;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  color: var(--lp-text);
}

.lp-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* ----- Content area ----- */
.lp-content {
  flex: 1;
  overflow: auto;
  padding: 28px 32px 40px;
}

.lp-page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 8px;
}

.lp-page-sub {
  color: var(--lp-text-muted);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
}

.lp-page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.lp-page-head .lp-page-title {
  margin-bottom: 6px;
}

.lp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-bottom: 16px;
}

.lp-breadcrumb a {
  color: var(--lp-text-muted);
  text-decoration: none;
}

.lp-breadcrumb a:hover {
  color: var(--lp-navy);
}

.lp-breadcrumb .sep {
  color: #cbd5e1;
}

.lp-breadcrumb strong {
  color: #334155;
  font-weight: 600;
}

/* ----- Buttons ----- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-btn--primary {
  background: var(--lp-navy);
  color: #fff;
}

.lp-btn--primary:hover {
  background: var(--lp-navy-hover);
}

.lp-btn--secondary {
  background: #fff;
  color: #334155;
  border: 1px solid var(--lp-border);
}

.lp-btn--secondary:hover {
  background: #f8fafc;
}

.lp-btn--secondary-blue {
  background: #fff;
  color: var(--lp-blue-link);
  border: 1px solid var(--lp-border);
}

/* ----- Stats ----- */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .lp-stats {
    grid-template-columns: 1fr;
  }
}

.lp-stat-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.lp-stat-label {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-bottom: 8px;
}

.lp-stat-value {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-stat-trend {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-green);
}

.lp-stat-trend--negative {
  color: var(--lp-red);
}

.lp-stat-trend--neutral {
  color: var(--lp-text-muted);
}

.lp-stat-trend--warn {
  color: var(--lp-orange);
}

/* ----- Filter bar ----- */
.lp-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lp-filter-bar__grow {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.lp-select-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13px;
}

.lp-select-wrap label {
  color: var(--lp-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.lp-select-wrap select {
  border: none;
  background: transparent;
  font-weight: 700;
  color: var(--lp-text);
  font-size: 13px;
  cursor: pointer;
  outline: none;
}

/* Standalone page-size control (e.g. license log): visible value when closed, consistent option list */
.lp-page-size-select {
  box-sizing: border-box;
  height: 34px;
  min-width: 4rem;
  padding: 0 30px 0 12px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M3 4.5L6 7.5 9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  color: var(--lp-text);
  font-weight: 600;
  font-size: 13px;
  line-height: normal;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: middle;
}

.lp-page-size-select:focus {
  outline: none;
  border-color: var(--lp-blue-link);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

.lp-page-size-select option {
  padding: 8px 12px;
  font-weight: 600;
  color: var(--lp-text);
  background-color: #fff;
}

.lp-page-size-row {
  align-items: center;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--lp-sidebar-active-bg);
  border: 1px solid #bae6fd;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-blue-link);
}

.lp-chip--danger {
  background: rgba(239, 68, 68, 0.10);
  border-color: rgba(239, 68, 68, 0.30);
  color: #b91c1c;
}

.lp-chip--warn {
  background: rgba(234, 88, 12, 0.10);
  border-color: rgba(234, 88, 12, 0.30);
  color: #9a3412;
}

.lp-chip button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  font-size: 16px;
  line-height: 1;
}

/* ----- Tables ----- */
.lp-table-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lp-table-scroll {
  overflow: auto;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.lp-table-scroll--fixed-10 {
  height: clamp(320px, calc(100vh - 360px), 640px);
}

.lp-table-scroll .lp-table {
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
}

.lp-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  text-align: left;
  padding: 14px 20px;
  background: #f8fafc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--lp-border);
}

.lp-table tbody td {
  padding: 16px 20px;
  border-top: 1px solid #f1f5f9;
  vertical-align: middle;
}

.lp-table tbody tr:hover {
  background: #fafbfc;
}

.lp-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--lp-border);
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-pagination__pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-pagination__pages button {
  min-width: 36px;
  padding: 8px 10px;
  border: 1px solid var(--lp-border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: #475569;
}

.lp-pagination__pages button:hover:not(:disabled) {
  background: #f8fafc;
}

.lp-pagination__pages button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  color: #94a3b8;
  background: #fff;
}

.lp-pagination__pages button.is-active {
  background: var(--lp-navy);
  color: #fff;
  border-color: var(--lp-navy);
}

.lp-pagination__pages .ellipsis {
  padding: 0 6px;
  color: #94a3b8;
  border: none;
  background: none;
}

.lp-pagination__pages.lp-pagination__pages--labeled button {
  min-width: auto;
  padding: 8px 12px;
}

/* Catalog cells */
.lp-product-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp-product-cell__icon {
  width: 36px;
  height: 36px;
  background: #e8f4fc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-blue-link);
  flex-shrink: 0;
}

.lp-product-cell__cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-blue-link);
  margin-bottom: 2px;
}

.lp-product-cell__name {
  font-weight: 700;
  color: var(--lp-text);
  font-size: 15px;
}

.lp-client-cell__loc {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-blue-link);
  margin-bottom: 2px;
}

.lp-client-cell__org {
  font-weight: 700;
  color: var(--lp-text);
}

.lp-license-pill {
  display: inline-block;
  max-width: min(100%, 260px);
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.lp-project-config-mini {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  max-width: 100%;
}

.lp-project-config-mini div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 28px 28px;
  align-items: center;
  gap: 6px;
}

.lp-project-config-mini span {
  color: var(--lp-text-muted);
  font-size: 11px;
  font-weight: 700;
}

.lp-project-config-mini code {
  overflow: hidden;
  color: var(--lp-text);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-project-config-mini .lp-icon-btn {
  padding: 4px;
}

.lp-dev-access-btn {
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}

.lp-status-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.lp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-status-dot--green {
  background: var(--lp-green);
}

.lp-status-dot--red {
  background: var(--lp-red);
}

.lp-status-dot--muted {
  background: #94a3b8;
}

.lp-status-row--muted {
  color: #475569;
}

.lp-btn-open {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  color: #334155;
}

.lp-btn-open:hover {
  background: #f8fafc;
}

.lp-action-eye {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  border-radius: var(--radius);
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
  text-decoration: none;
  transition: background 0.15s;
}

.lp-action-eye:hover {
  background: #bbf7d0;
  color: #14532d;
}

.lp-action-eye i {
  font-size: 16px;
}

.lp-row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 136px;
}

.lp-row-actions .lp-action-icon-btn,
.lp-row-actions .lp-action-eye {
  flex: 0 0 auto;
}

.lp-btn.lp-btn--danger {
  background: #dc2626;
  color: #fff;
  border: 1px solid #dc2626;
}

.lp-btn.lp-btn--danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.lp-field-error {
  outline: 2px solid var(--lp-red);
  border-color: var(--lp-red) !important;
}

/* ----- Forms (white card) ----- */
.lp-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.lp-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}

.lp-card > .lp-card-desc {
  margin: 0 0 24px;
  color: var(--lp-text-muted);
  font-size: 14px;
}

.lp-card hr {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 0 0 24px;
}

.lp-form-section-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

.lp-field {
  margin-bottom: 18px;
}

.lp-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.lp-field input,
.lp-field textarea,
.lp-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.lp-field input:focus,
.lp-field select:focus {
  border-color: var(--lp-navy);
  box-shadow: 0 0 0 1px var(--lp-navy);
}

.lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .lp-grid-2,
  .lp-grid-3 {
    grid-template-columns: 1fr;
  }
}

.lp-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 8px;
}

/* License config: two columns + summary */
.lp-config-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1024px) {
  .lp-config-layout {
    grid-template-columns: 1fr;
  }
}

.lp-radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.lp-radio-card {
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fafbfc;
  transition: border-color 0.15s, background 0.15s;
}

.lp-radio-card.is-selected {
  border-color: var(--lp-navy);
  background: #e8f4fc;
}

.lp-radio-card input {
  margin-top: 4px;
  accent-color: var(--lp-navy);
}

.lp-radio-card__title {
  font-weight: 700;
  margin-bottom: 4px;
}

.lp-radio-card__desc {
  font-size: 12px;
  color: var(--lp-text-muted);
  line-height: 1.4;
}

.lp-duration-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--lp-border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 280px;
}

.lp-duration-row input {
  width: 72px;
  border: none;
  padding: 11px 12px;
  font-size: 14px;
  text-align: center;
  border-right: 1px solid var(--lp-border);
}

.lp-duration-row select {
  flex: 1;
  border: none;
  padding: 11px 12px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

.lp-summary-navy {
  background: linear-gradient(180deg, #003366 0%, #002952 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.25);
}

.lp-summary-navy__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-summary-navy__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}

.lp-summary-navy__row:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-badge-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.25);
  color: #86efac;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.lp-badge-active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.lp-badge-inactive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.lp-badge-inactive::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f87171;
}

/* Product detail page */
.lp-detail-sync {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-top: 6px;
}

.lp-detail-columns {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1024px) {
  .lp-detail-columns {
    grid-template-columns: 1fr;
  }
}

.lp-license-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-license-card.lp-card {
  padding: 0;
  overflow: hidden;
}

.lp-license-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.lp-license-card-head h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.lp-license-card-head a {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-blue-link);
  text-decoration: none;
}

.lp-policy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.lp-policy-trigger {
  appearance: none;
  border: none;
  background: transparent;
  padding: 6px 10px;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-blue-link);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-policy-trigger:hover {
  background: #f1f5f9;
  color: #0b3f96;
}

.lp-policy-trigger i {
  font-size: 12px;
  color: #94a3b8;
}

.lp-license-key-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin: 16px 20px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: var(--radius);
  border: 1px solid #f1f5f9;
}

.lp-license-key-row code {
  display: block;
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: var(--lp-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-inline-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.lp-inline-input:focus {
  border-color: var(--lp-navy);
  box-shadow: 0 0 0 1px var(--lp-navy);
}

.lp-license-name-input {
  width: min(360px, 52vw);
}

.lp-policy-inline-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lp-policy-inline-btn {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--lp-border);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.lp-policy-inline-btn--save {
  background: var(--lp-navy);
  border-color: var(--lp-navy);
  color: #fff;
}

.lp-policy-inline-btn--save:hover {
  background: var(--lp-navy-hover);
}

.lp-policy-inline-btn--delete {
  border-color: rgba(220, 38, 38, 0.25);
  color: #b91c1c;
}

.lp-policy-inline-btn--delete:hover {
  background: rgba(220, 38, 38, 0.06);
}

.lp-license-key-row .lp-key-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lp-status-icon-box {
  width: 36px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.lp-status-icon-box--active {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #166534;
}

.lp-status-icon-box--inactive {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.lp-status-icon-box--deactive {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.lp-status-icon-box--expired {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
}

.lp-action-icon-btn {
  width: 36px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
}

.lp-action-icon-btn:hover {
  background: #f8fafc;
  color: var(--lp-text);
}

.lp-action-icon-btn--danger {
  border-color: rgba(220, 38, 38, 0.25);
  color: #b91c1c;
}

.lp-action-icon-btn--danger:hover {
  background: rgba(220, 38, 38, 0.06);
  color: #991b1b;
}

.lp-license-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
}

.lp-license-device-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 2px 20px 18px;
  background: #fafbfc;
}

.lp-license-device-meta__device {
  grid-column: 1 / 2;
}

.lp-license-device-meta__serial {
  grid-column: 2 / 4;
}

@media (max-width: 768px) {
  .lp-license-meta {
    grid-template-columns: 1fr 1fr;
  }

  .lp-license-device-meta {
    grid-template-columns: 1fr 1fr;
  }

  .lp-license-device-meta__device,
  .lp-license-device-meta__serial {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .lp-license-device-meta {
    grid-template-columns: 1fr;
  }
}

.lp-license-meta dl,
.lp-license-device-meta dl {
  margin: 0;
  min-width: 0;
}

.lp-license-meta dt,
.lp-license-device-meta dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}

.lp-license-meta dd,
.lp-license-device-meta dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-license-meta .status-dd--active {
  color: var(--lp-green);
}

.lp-license-meta .status-dd--deactive {
  color: var(--lp-red);
}

.lp-license-meta .status-dd--inactive {
  color: var(--lp-red);
}

.lp-license-meta .status-dd--expired {
  color: #475569;
}

.lp-license-security {
  border-top: 1px solid #e2e8f0;
  padding: 16px 20px 18px;
  background: #fff;
}

.lp-sec-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.lp-sec-head h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.lp-sec-head p,
.lp-sec-empty {
  margin: 0;
  font-size: 12px;
  color: var(--lp-text-muted);
}

.lp-sec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
  gap: 12px;
  margin-bottom: 12px;
}

.lp-sec-box {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
  min-width: 0;
}

.lp-sec-box--instances {
  background: #fff;
}

.lp-sec-box-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-text-muted);
  margin-bottom: 10px;
}

.lp-sec-link-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-sec-link-row code,
.lp-instance-row code {
  min-width: 0;
  flex: 1;
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--lp-text);
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.lp-sec-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--lp-text-muted);
}

.lp-sec-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: capitalize;
  border: 1px solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-sec-chip--green {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #166534;
}

.lp-sec-chip--blue {
  background: #dbeafe;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.lp-sec-chip--red {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.lp-instance-list,
.lp-sec-log-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-instance-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.lp-instance-main {
  min-width: 0;
}

.lp-instance-label {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.lp-instance-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-sec-log-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--lp-text-muted);
}

.lp-sec-log-row span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-sec-log-row time {
  white-space: nowrap;
}

.lp-sec-alert {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .lp-sec-grid,
  .lp-instance-row,
  .lp-sec-log-row {
    grid-template-columns: 1fr;
  }

  .lp-sec-head {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-instance-actions {
    justify-content: flex-start;
  }
}

.lp-client-panel .lp-card {
  padding: 20px;
}

.lp-client-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp-client-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.lp-client-brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.lp-person-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
}

.lp-person-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.lp-person-row span.label {
  width: 64px;
  font-weight: 700;
  color: var(--lp-text-muted);
  font-size: 12px;
}

.lp-person-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ----- Login (split: putih + panel biru menyatu, kartu pill) ----- */
.lp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.lp-login-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

.lp-login-split {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: #fff;
}

/* Kiri: putih bersih + konteks */
.lp-login-visual {
  flex: 1 1 48%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px 56px 48px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.lp-login-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 28%, rgba(15, 82, 186, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(0, 51, 102, 0.04) 0%, transparent 38%);
  pointer-events: none;
}

.lp-login-visual__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  min-width: 0;
}

.lp-login-visual__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-blue-link);
  margin-bottom: 14px;
}

.lp-login-visual__headline {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.lp-login-visual__lead {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-login-visual__art {
  max-width: 100%;
  height: auto;
  opacity: 0.92;
}

.lp-login-visual__art svg {
  display: block;
  width: 100%;
  max-width: min(380px, 100%);
  max-height: 200px;
  height: auto;
  margin: 0 auto;
}

/* Kanan: biru brand + sudut besar menyatu dengan kolom putih */
.lp-login-aside {
  flex: 1 1 52%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 48px 36px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-top-left-radius: clamp(48px, 9vw, 112px);
  background: linear-gradient(
    168deg,
    #0f52ba 0%,
    var(--lp-navy) 38%,
    #00264d 72%,
    #001a33 100%
  );
}

.lp-login-aside__decor {
  position: absolute;
  right: -72px;
  bottom: -108px;
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 52px rgba(255, 255, 255, 0.035),
    inset 0 0 0 104px rgba(255, 255, 255, 0.025),
    inset 0 0 0 156px rgba(255, 255, 255, 0.018);
}

.lp-login-aside__decor::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  height: 68%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lp-login-aside::after {
  content: "";
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.lp-login-aside__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  max-width: 400px;
  min-width: 0;
  flex: 0 1 auto;
}

.lp-login-panel {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 400px;
  box-sizing: border-box;
  background: #fff;
  border: none;
  border-radius: 28px;
  padding: 40px 36px 36px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 20px 50px rgba(0, 26, 51, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.lp-login-session-banner {
  margin: 0 0 22px;
  padding: 14px 16px;
  background: #e8f4fc;
  border: 1px solid #bae6fd;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lp-text);
}

.lp-login-session-banner__text {
  margin: 0;
}

.lp-login-session-banner a {
  color: var(--lp-blue-link);
  font-weight: 600;
  text-decoration: none;
}

.lp-login-session-banner a:hover {
  text-decoration: underline;
}

.lp-login-session-banner__btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--lp-blue-link);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.lp-login-session-banner__btn:hover {
  color: var(--lp-navy);
}

.lp-login-panel__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.lp-login-panel__brand .lp-logo__mark {
  width: 42px;
  height: 42px;
  font-size: 18px;
  border-radius: 12px;
}

.lp-login-panel__brand .lp-logo__mark svg {
  width: 30px;
  height: 30px;
}

.lp-login-panel__brand .lp-logo__text strong {
  font-size: 18px;
}

.lp-login-panel__brand .lp-logo__text span {
  font-size: 10px;
}

.lp-login-title {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.lp-login-sub {
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-login-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-login-field {
  margin-bottom: 18px;
}

.lp-login-field:last-of-type {
  margin-bottom: 14px;
}

.lp-login-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.lp-login-input-wrap__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  color: #94a3b8;
  font-size: 15px;
  pointer-events: none;
  z-index: 1;
}

.lp-login-panel .lp-login-input-wrap input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 14px 18px 14px 48px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--lp-text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-login-panel .lp-login-input-wrap input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.lp-login-panel .lp-login-input-wrap input:hover {
  border-color: #cbd5e1;
}

.lp-login-panel .lp-login-input-wrap input:focus {
  border-color: var(--lp-navy);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.12);
}

.lp-login-remember-row {
  margin: 4px 0 22px;
}

.lp-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--lp-text);
  font-size: 14px;
  font-weight: 500;
  user-select: none;
}

.lp-login-remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--lp-navy);
  cursor: pointer;
}

.lp-login-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.28);
}

.lp-login-submit:hover {
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.32);
}

.lp-login-error {
  color: var(--lp-red);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 18px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 16px;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .lp-login-split {
    flex-direction: column;
    min-height: 100vh;
  }

  .lp-login-visual {
    flex: 0 0 auto;
    padding: 32px 24px 24px;
  }

  .lp-login-visual__lead {
    margin-bottom: 20px;
  }

  .lp-login-visual__art svg {
    max-width: 280px;
    margin: 0 auto;
  }

  .lp-login-aside {
    flex: 1 1 auto;
    padding: 32px 20px 40px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 0;
  }

  .lp-login-aside__decor {
    right: -100px;
    bottom: -140px;
    opacity: 0.75;
  }

  .lp-login-aside::after {
    opacity: 0.5;
  }
}
