.cp-brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(112, 122, 111, 0.28);
}

.cp-login-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(112, 122, 111, 0.24);
}

.cp-admin-footer {
  margin: 8px 24px 24px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(112, 122, 111, 0.28);
  color: #404940;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.cp-admin-footer a {
  color: #0e6430;
  text-decoration: none;
}

.cp-admin-footer a:hover {
  text-decoration: underline;
}

body {
  font-size: 14px;
  line-height: 1.38;
}

.text-display-lg {
  font-size: 26px !important;
  line-height: 32px !important;
  letter-spacing: 0 !important;
}

.text-headline-md {
  font-size: 20px !important;
  line-height: 26px !important;
  letter-spacing: 0 !important;
}

.text-headline-sm {
  font-size: 17px !important;
  line-height: 23px !important;
}

.text-title-lg {
  font-size: 15px !important;
  line-height: 21px !important;
}

.text-label-md,
.font-label-md {
  font-size: 12.5px !important;
  line-height: 17px !important;
}

.text-label-sm,
.font-label-sm,
.text-sm {
  font-size: 11.5px !important;
  line-height: 16px !important;
}

.text-xs {
  font-size: 10.5px !important;
  line-height: 14px !important;
}

input,
select,
textarea,
button {
  font-size: 12.5px;
  line-height: 17px;
}

th,
td {
  font-size: 12.5px;
  line-height: 17px;
}

.material-symbols-outlined {
  font-size: 18px;
}

.cp-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px;
  pointer-events: none;
  background: rgba(2, 38, 61, 0.08);
}

.cp-loading.is-active {
  display: flex;
}

.cp-loading__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 108, 52, 0.22);
  background: #ffffff;
  color: #00263d;
  box-shadow: 0 12px 30px rgba(0, 38, 61, 0.18);
  font-weight: 700;
}

.cp-loading__spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 3px solid rgba(14, 108, 52, 0.18);
  border-top-color: #0e6c34;
  animation: cp-spin 0.8s linear infinite;
}

body.cp-busy {
  cursor: progress;
}

button:disabled {
  cursor: progress;
  opacity: 0.72;
}

@keyframes cp-spin {
  to {
    transform: rotate(360deg);
  }
}
