/* ===== Auth: match original credential card feel ===== */
.auth-settings .cluster-grid{
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.auth-settings .cluster-pill{
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
}

.auth-settings .cluster-pill .cluster-label{
  display: inline-block;
  min-width: 48px; /* helps equalize short labels */
  text-align: center;
}

.auth-settings .field{
  margin-top: 12px;
}

.auth-settings .field label{
  display:block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.auth-settings .field .field-input,
.auth-settings .field input[type="text"],
.auth-settings .field input[type="password"]{
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(2,6,23,.35);
  color: var(--text);
}

body.light .auth-settings .field .field-input,
body.light .auth-settings .field input[type="text"],
body.light .auth-settings .field input[type="password"]{
  background: #ffffff;
}

.auth-settings .btn-row{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
