:root {
  --ink: #15251f;
  --muted: #6d7772;
  --line: #dce1dd;
  --paper: #f5f3ed;
  --panel: #fffefa;
  --green: #1f654e;
  --green-dark: #164936;
  --mint: #dcebe4;
  --amber: #d99030;
  --red: #a84435;
  --shadow: 0 18px 60px rgba(28, 42, 35, 0.08);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(207, 224, 212, 0.65), transparent 28rem),
    var(--paper);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
}

.login-story {
  padding: clamp(48px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(21, 54, 41, 0.96), rgba(28, 92, 68, 0.9)),
    #164936;
  color: white;
}

.login-story::after {
  content: "";
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  position: absolute;
  right: -12rem;
  bottom: -14rem;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.035),
    0 0 0 10rem rgba(255, 255, 255, 0.025);
}

.brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f2b75d;
  color: #173e30;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 48px;
}

.brand-mark.small {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  margin: 0;
  font-size: 13px;
}

.login-story h1 {
  max-width: 720px;
  margin: 8px 0 22px;
  font-family: Georgia, "STSong", serif;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.story-copy {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.85;
}

.security-note {
  margin-top: 64px;
  max-width: 660px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.login-panel {
  padding: 48px;
  display: grid;
  place-items: center;
}

.login-card {
  width: min(410px, 100%);
  display: grid;
  gap: 24px;
}

h1,
h2,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.login-story .eyebrow {
  color: #f4c77f;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  color: #35443d;
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfd7d1;
  border-radius: 11px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: 160ms ease;
}

textarea {
  resize: vertical;
  line-height: 1.6;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 101, 78, 0.11);
}

.primary-button,
.secondary-button,
.danger-button {
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 11px 16px;
  font-weight: 800;
  transition: 150ms ease;
}

.primary-button {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 20px rgba(31, 101, 78, 0.18);
}

.primary-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.primary-button.compact,
.secondary-button,
.danger-button {
  width: auto;
  padding: 9px 13px;
  font-size: 13px;
}

.secondary-button {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.danger-button {
  background: #fff4f1;
  color: var(--red);
  border-color: #efd4cf;
}

.text-button,
.icon-button {
  border: 0;
  background: transparent;
  color: inherit;
}

.form-error {
  min-height: 18px;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  line-height: 1.5;
}

.app-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  background: #153c2e;
  color: white;
}

.sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 10px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-brand strong,
.sidebar-brand span {
  display: block;
}

.sidebar-brand span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

nav {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.nav-item {
  width: 100%;
  border: 0;
  border-radius: 11px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  font-weight: 700;
}

.nav-item span {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.32);
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-footer {
  margin-top: auto;
  padding: 18px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-user strong,
.sidebar-user span {
  display: block;
}

.sidebar-user span,
.sidebar-footer .text-button {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.sidebar-footer .text-button {
  padding: 8px 0 0;
}

.workspace {
  min-width: 0;
  padding: 36px clamp(24px, 4vw, 62px) 64px;
}

.workspace-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.workspace-header h1 {
  margin-bottom: 0;
  font-family: Georgia, "STSong", serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.agent-status {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 300px;
  padding: 10px 13px;
  border: 1px solid #cde0d6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
}

.agent-status strong,
.agent-status span {
  display: block;
}

.agent-status strong {
  font-size: 12px;
}

.agent-status span:not(.status-dot) {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #57be8b;
  box-shadow: 0 0 0 5px rgba(87, 190, 139, 0.12);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.metric-card,
.panel {
  border: 1px solid rgba(209, 216, 211, 0.9);
  background: rgba(255, 254, 250, 0.9);
  box-shadow: var(--shadow);
}

.metric-card {
  border-radius: 15px;
  padding: 19px 21px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
}

.metric-card span {
  font-size: 12px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 500;
}

.metric-card small {
  font-size: 10px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(420px, 1.22fr);
  gap: 16px;
  align-items: start;
}

.panel {
  border-radius: 17px;
  padding: 22px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.task-composer {
  display: grid;
  gap: 18px;
}

.privacy-pill,
.status-badge,
.platform-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.privacy-pill {
  color: var(--green);
  background: var(--mint);
}

.platform-switch {
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  background: #ecefe9;
}

.platform-switch label {
  position: relative;
  display: block;
}

.platform-switch input {
  position: absolute;
  opacity: 0;
}

.platform-switch span {
  display: block;
  padding: 10px;
  border-radius: 9px;
  text-align: center;
  color: var(--muted);
}

.platform-switch input:checked + span {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(32, 45, 38, 0.08);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.option-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
}

.option-grid input {
  width: auto;
}

.inline-notice {
  border-left: 3px solid var(--amber);
  padding: 10px 12px;
  background: #fff8ea;
  color: #6e5733;
  font-size: 12px;
  line-height: 1.65;
}

.list-stack {
  display: grid;
  gap: 9px;
}

.empty-state {
  padding: 54px 16px;
  border: 1px dashed var(--line);
  border-radius: 13px;
  color: var(--muted);
  text-align: center;
}

.job-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.job-card-top,
.job-card-meta,
.button-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.job-card-top {
  justify-content: space-between;
}

.job-card-title {
  min-width: 0;
  margin-top: 10px;
  overflow: hidden;
  color: #35423c;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-card-meta {
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}

.progress-track {
  width: 100%;
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: #e9eee9;
  appearance: none;
}

.progress-track::-webkit-progress-bar {
  border-radius: 99px;
  background: #e9eee9;
}

.progress-track::-webkit-progress-value,
.progress-track::-moz-progress-bar {
  border-radius: 99px;
  background: var(--green);
}

.status-badge {
  color: #5e665f;
  background: #eef1ee;
}

.status-badge.succeeded {
  color: var(--green);
  background: var(--mint);
}

.status-badge.verified {
  color: var(--green);
  background: var(--mint);
}

.status-badge.running,
.status-badge.claimed,
.status-badge.pending {
  color: #8b601e;
  background: #fff0d7;
}

.status-badge.failed,
.status-badge.cancelled,
.status-badge.revoked {
  color: var(--red);
  background: #f9e5e1;
}

.platform-badge {
  color: #36516a;
  background: #e7eff5;
}

.platform-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.platform-account-card {
  display: grid;
  gap: 17px;
}

.platform-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}

.platform-heading h2,
.platform-heading p {
  margin-bottom: 0;
}

.platform-letter {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.platform-letter.tee {
  color: #24567c;
  background: #e2eff8;
}

.platform-letter.custom {
  color: #704277;
  background: #f1e5f4;
}

.credential-summary {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 11px;
  background: #f2f5f1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.credential-security-note {
  margin: 16px 0;
}

.credential-admin-list {
  display: grid;
  gap: 9px;
}

.credential-admin-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 120px minmax(150px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.credential-admin-row strong,
.credential-admin-row span {
  display: block;
}

.credential-admin-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.revealed-credential {
  display: grid;
  gap: 14px;
  padding: 15px;
  border: 1px solid #cde0d6;
  border-radius: 12px;
  background: #eff7f2;
}

.revealed-credential input {
  font-family: Consolas, monospace;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid #e4e8e4;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td code {
  color: #53625a;
  font-size: 10px;
}

.diagnostic-url {
  display: inline-block;
  max-width: 320px;
  overflow-wrap: anywhere;
}

.diagnostic-reason {
  min-width: 240px;
  max-width: 420px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.audit-check-column {
  width: 32px;
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.user-card {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.user-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.user-card p {
  color: var(--muted);
  font-size: 11px;
}

.user-card .button-row {
  margin-top: 14px;
}

.account-grid {
  grid-template-columns: 1fr 1fr;
}

.detail-list {
  margin: 22px 0 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
  font-size: 12px;
}

.detail-list dd {
  margin: 0;
  font-size: 13px;
}

#passwordForm {
  display: grid;
  gap: 16px;
}

dialog {
  width: min(500px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(10, 27, 20, 0.3);
}

dialog::backdrop {
  background: rgba(12, 28, 21, 0.55);
  backdrop-filter: blur(4px);
}

.dialog-card {
  padding: 24px;
  display: grid;
  gap: 16px;
  background: var(--panel);
}

.compact-dialog {
  width: min(460px, calc(100vw - 32px));
}

.field-with-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.field-with-action input {
  min-width: 0;
  font-family: Consolas, "SFMono-Regular", monospace;
}

.field-with-action button {
  white-space: nowrap;
}

.activity-platforms {
  display: grid;
  gap: 4px;
  min-width: 150px;
}

.activity-platforms span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.server-system-panel {
  margin-top: 16px;
}

.server-system-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}

.server-system-grid div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.server-system-grid span,
.server-system-grid strong {
  display: block;
}

.server-system-grid span {
  color: var(--muted);
  font-size: 10px;
}

.server-system-grid strong {
  margin-top: 7px;
  font-family: Georgia, serif;
  font-size: 18px;
}

.memory-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: #e4e9e5;
}

.memory-meter div {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #2f8b63;
  transition: width 0.25s ease;
}

.memory-meter div[data-level="warning"] {
  background: #d99030;
}

.memory-meter div[data-level="danger"] {
  background: #a84435;
}

.ip-location {
  min-width: 130px;
  color: var(--muted);
  line-height: 1.5;
}

.platform-backup-actions {
  display: flex;
  gap: 7px;
  justify-content: flex-end;
}

.icon-button {
  font-size: 25px;
  line-height: 1;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 4px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 360px;
  padding: 12px 16px;
  border-radius: 11px;
  background: #173d2f;
  color: white;
  box-shadow: 0 14px 40px rgba(16, 40, 30, 0.28);
  font-size: 13px;
}

.admin-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.overview-row,
.device-row,
.security-summary > div,
.security-policy-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.overview-row {
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
}

.overview-row strong,
.overview-row span,
.device-row b,
.device-row span {
  display: block;
}

.overview-row div > span,
.device-row div > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.security-summary,
.security-policy-list {
  display: grid;
}

.security-summary > div,
.security-policy-list > div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.security-summary span,
.security-policy-list span {
  color: var(--muted);
  font-size: 12px;
}

.security-summary strong,
.security-policy-list strong {
  text-align: right;
  font-size: 12px;
}

.user-card.risk-locked {
  border-color: #e0a49a;
  box-shadow: inset 0 3px 0 var(--red);
}

.user-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.user-card-head h3 {
  margin-top: 9px;
}

.status-badge.active {
  color: var(--green);
  background: var(--mint);
}

.status-badge.locked,
.status-badge.expired {
  color: var(--red);
  background: #f9e5e1;
}

.risk-box {
  margin-top: 13px;
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid #ebc3bc;
  border-radius: 10px;
  background: #fff5f3;
}

.risk-box strong {
  color: var(--red);
  font-size: 12px;
}

.risk-box span {
  color: #743d35;
  font-size: 11px;
  line-height: 1.5;
}

.risk-box small {
  color: var(--muted);
  font-size: 9px;
}

.device-list {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.device-list > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-row {
  padding: 9px 0;
  border-bottom: 1px dashed #e2e6e2;
}

.device-row b {
  font-size: 11px;
}

.text-danger {
  border: 0;
  padding: 4px;
  background: transparent;
  color: var(--red);
  font-size: 10px;
}

.security-grid {
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.85fr);
}

.security-lock-row {
  padding: 13px;
  display: grid;
  gap: 5px;
  border: 1px solid #efd1cb;
  border-radius: 11px;
  background: #fff7f5;
}

.security-lock-row strong {
  color: var(--red);
}

.security-lock-row span {
  color: #624640;
  font-size: 11px;
}

.security-lock-row small {
  color: var(--muted);
  font-size: 9px;
}

.security-boundary {
  margin-top: 16px;
  line-height: 1.7;
}

.platform-backup-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  gap: 16px;
  align-items: start;
}

.platform-backup-form {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.platform-backup-list {
  display: grid;
  gap: 10px;
}

.platform-backup-row {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr) minmax(120px, 0.72fr) auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.platform-backup-row strong,
.platform-backup-row span,
.platform-backup-row small {
  display: block;
}

.platform-backup-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.platform-backup-row small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.platform-chip {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e6eff1;
  color: #31596b;
  font-family: Georgia, serif;
  font-weight: 800;
}

.platform-chip.customall {
  background: #f1e7f2;
  color: #6f4672;
}

.count-pill {
  display: inline-flex;
  min-width: 28px;
  justify-content: center;
  vertical-align: middle;
  border-radius: 99px;
  padding: 3px 8px;
  background: var(--mint);
  color: var(--green);
  font-family: inherit;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-story {
    min-height: 46vh;
    padding: 52px;
  }

  .login-story h1 {
    font-size: 48px;
  }

  .security-note {
    margin-top: 32px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .platform-backup-layout {
    grid-template-columns: 1fr;
  }

  .platform-backup-form {
    position: static;
  }

  .admin-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .server-system-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .app-layout {
    display: block;
  }

  .sidebar {
    position: static;
    width: 100%;
    height: auto;
  }

  nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar-footer {
    margin-top: 22px;
  }

  .workspace {
    padding: 28px 16px 48px;
  }

  .platform-backup-row {
    grid-template-columns: auto 1fr;
  }

  .workspace-header,
  .panel-heading {
    flex-direction: column;
  }

  .metric-grid,
  .user-grid,
  .account-grid,
  .platform-account-grid {
    grid-template-columns: 1fr;
  }

  .server-system-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-admin-row {
    grid-template-columns: 1fr;
  }

  .login-story {
    padding: 36px 24px;
  }

  .login-panel {
    padding: 36px 24px 56px;
  }
}
