/* ============================================================
   Senternal portal — account surface (login / dashboard / password)
   ============================================================ */

.account-narrow { max-width: 34rem; }

.account-form {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
  margin-top: 2rem;
}
.account-form .btn { justify-self: start; }

.account-form__alt {
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  color: var(--text-dim);
}

.account-error {
  margin-top: 1.5rem;
  border-color: var(--danger, #b4231f);
}

/* ---- Licenses dashboard ---------------------------------------- */

.license-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.license { padding: 1.75rem; }
.license__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.license__tier { font-weight: 650; color: var(--text-hi); }
.license__status {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.license__status--active { color: var(--mint, #38d39f); }
.license__status--revoked,
.license__status--expired { color: var(--danger, #b4231f); }
.license__keyrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.license__key {
  padding: 0.35em 0.7em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-1);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  overflow-wrap: anywhere;
}
.btn--sm { padding: 0.35em 0.9em; font-size: var(--text-sm); }
.license__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1.25rem 0 0;
}
.license__meta dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.license__meta dd { margin: 0.25rem 0 0; color: var(--text); }

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
