.abte-registry {
  --abte-registry-teal: #087f82;
  --abte-registry-teal-dark: #075f64;
  --abte-registry-navy: #102944;
  --abte-registry-copy: #526173;
  --abte-registry-line: #d9e0e6;
  color: #172438;
}

.abte-registry > h2 {
  margin-bottom: 10px;
  color: var(--abte-registry-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.abte-registry > p {
  color: var(--abte-registry-copy);
}

.abte-registry__form {
  margin-top: 22px;
}

.abte-registry__form label {
  display: block;
  margin-bottom: 7px;
  color: var(--abte-registry-navy);
  font-size: 13px;
  font-weight: 800;
}

.abte-registry__form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.abte-registry__form input {
  width: 100%;
  min-width: 0;
  height: 51px;
  padding: 9px 13px;
  color: #172438;
  background: white;
  border: 1px solid #cbd5df;
  border-radius: 3px 0 0 3px;
  font: inherit;
}

.abte-registry__form button {
  min-width: 94px;
  height: 51px;
  padding-inline: 19px;
  color: white;
  background: var(--abte-registry-teal);
  border: 1px solid var(--abte-registry-teal);
  border-radius: 0 3px 3px 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.abte-registry__form button:hover {
  background: var(--abte-registry-teal-dark);
}

.abte-registry__results {
  margin-top: 22px;
}

.abte-registry__summary {
  margin-bottom: 12px;
  color: var(--abte-registry-copy);
  font-size: 13px;
  font-weight: 700;
}

.abte-registry__message {
  margin: 0;
  padding: 15px;
  color: #33475a;
  background: #f2f5f7;
  border-left: 4px solid var(--abte-registry-teal);
}

.abte-credential-result {
  margin-top: 12px;
  padding: 20px;
  background: white;
  border: 1px solid var(--abte-registry-line);
  box-shadow: 0 8px 22px rgba(16, 41, 68, .06);
}

.abte-credential-result__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.abte-credential-result h3 {
  margin: 0;
  color: var(--abte-registry-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}

.abte-credential-result__heading p {
  margin: 4px 0 0;
  color: var(--abte-registry-copy);
  font-size: 13px;
}

.abte-credential-status {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: #344054;
  background: #f2f4f7;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.abte-credential-status--active {
  color: #05603a;
  background: #e7f6ed;
}

.abte-credential-status--expired,
.abte-credential-status--inactive {
  color: #854a0e;
  background: #fff4df;
}

.abte-credential-status--suspended {
  color: #8b1e16;
  background: #feeceb;
}

.abte-credential-result dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 17px 0;
  padding: 14px 0;
  border-top: 1px solid var(--abte-registry-line);
  border-bottom: 1px solid var(--abte-registry-line);
}

.abte-credential-result dl div {
  min-width: 0;
}

.abte-credential-result dt {
  color: var(--abte-registry-copy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.abte-credential-result dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
}

.abte-credential-result > a {
  color: var(--abte-registry-teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.abte-registry--compact .abte-registry__form {
  margin-top: 12px;
}

@media (max-width: 560px) {
  .abte-registry__form > div,
  .abte-credential-result dl {
    grid-template-columns: 1fr;
  }

  .abte-registry__form > div {
    gap: 9px;
  }

  .abte-registry__form input,
  .abte-registry__form button {
    width: 100%;
    border-radius: 3px;
  }

  .abte-credential-result__heading {
    flex-direction: column;
  }
}
