/* ============================================================
   shared.css — единые токены и компоненты для всех страниц
   ============================================================ */

/* ── Шрифт ───────────────────────────────────────────────────
   Inter лежит СВОИМ файлом, а не приходит с fonts.googleapis.com.
   Две причины, и вторая важнее первой:

   1. Заголовок `Content-Security-Policy: default-src 'self'` чужие
      источники не пускает, а ослаблять его ради шрифта — открывать
      дыру ради начертания.
   2. Служба работает на машине без гарантированного интернета. Внешний
      шрифт там не просто не доедет: страница ждёт его и рисуется
      с задержкой, и выглядит это как «сервер тормозит».

   Файл один на все начертания: Inter переменный, и Google отдаёт
   для 400…700 один и тот же woff2 (проверено по md5). Отсюда
   `font-weight: 100 900` — диапазон, а не четыре одинаковых файла.
   Подмножества только latin и cyrillic: греческого и вьетнамского
   в русском интерфейсе не бывает, а весят они как всё остальное.
   ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
                 U+FFFD;
}

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --bg:          #f1f5f9;
  --surface:     #ffffff;
  --surface-2:   #f8fafc;
  --border:      #e2e8f0;
  --border-focus:#6366f1;

  --text-primary:   #0f172a;
  --text-secondary: #64748b;
  --text-muted:     #94a3b8;

  --accent:       #6366f1;
  --accent-hover: #4f46e5;
  --accent-light: #eef2ff;

  --success:       #059669;
  --success-light: #ecfdf5;
  --error:         #dc2626;
  --error-light:   #fef2f2;
  --warning:       #d97706;
  --warning-light: #fffbeb;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.04);
  --shadow:    0 4px 12px rgba(15,23,42,.08), 0 1px 3px rgba(15,23,42,.05);

  --t: 0.16s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

/* ── Form Fields ─────────────────────────────────────────── */
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.field-hint {
  display: block;
  font-size: 0.73rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Inputs ──────────────────────────────────────────────── */
input[type="text"],
input[type="password"],
input[type="number"],
select {
  width: 100%;
  padding: 9px 11px;
  font-size: 0.87rem;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

/* Checkbox */
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ── Buttons ─────────────────────────────────────────────── */
button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 600;
  font-family: var(--font);
  transition: background var(--t), box-shadow var(--t), transform var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

button:hover:not(:disabled):not(.collapsible-toggle):not(.stepper-btn):not(.icon-btn):not(.btn-secondary) {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(99,102,241,.30);
}

button:active:not(:disabled):not(.collapsible-toggle):not(.stepper-btn):not(.icon-btn):not(.btn-secondary) {
  transform: scale(0.98);
}

button:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ── Icon Buttons ────────────────────────────────────────── */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--t), border-color var(--t), color var(--t);
}

.icon-btn:hover {
  background: var(--accent-light);
  border-color: #c7d2fe;
  color: var(--accent);
  box-shadow: none;
}

.icon-btn:active { background: #e0e7ff; }

.icon-btn-sm { width: 32px; height: 32px; }

a.icon-btn { text-decoration: none; }

.icon-btn-danger { color: var(--error); }

.icon-btn-danger:hover {
  background: var(--error-light);
  border-color: #fca5a5;
  color: #b91c1c;
}

/* ── Grid ────────────────────────────────────────────────── */
.grid   { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* Отступ сверху классом, а не style="margin-top:12px" в разметке:
   атрибут style закрыт заголовком CSP (style-src 'self'). */
.grid-spaced { margin-top: 12px; }

/* Значок внутри кнопки не должен сжиматься, когда подпись длинная.
   Тоже классом — по той же причине. */
.icon-fixed { flex-shrink: 0; }

/* ── Status Badges ───────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.status-queued    { background: var(--accent-light);   color: var(--accent);   }
.status-running   { background: var(--success-light);  color: var(--success);  }
.status-paused    { background: var(--warning-light);  color: var(--warning);  }
.status-cancelling,
.status-cancelled { background: var(--error-light);    color: var(--error);    }
.status-done      { background: #f1f5f9;               color: #475569;         }
.status-skipped   { background: #f8fafc;               color: #94a3b8;         }
.status-error     { background: var(--error-light);    color: #b91c1c;         }

/* ── Numeric Stepper ─────────────────────────────────────── */
.stepper {
  display: inline-flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--t), box-shadow var(--t);
}

.stepper:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

.stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-height: 36px;
  flex-shrink: 0;
  background: var(--surface-2);
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  transition: background var(--t), color var(--t);
  user-select: none;
}

.stepper-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
  box-shadow: none;
}

.stepper-btn:active {
  background: #e0e7ff;
  transform: none;
}

.stepper-btn-dec { border-right: 1px solid var(--border); }
.stepper-btn-inc { border-left:  1px solid var(--border); }

.stepper-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-primary);
  background: transparent;
  padding: 0 2px;
  -moz-appearance: textfield;
  box-shadow: none;
  width: 100%;
}

.stepper-input::-webkit-inner-spin-button,
.stepper-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.stepper-input:focus { border-color: transparent; box-shadow: none; }

.stepper-unit {
  display: flex;
  align-items: center;
  padding: 0 9px 0 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

/* ── Misc Utilities ──────────────────────────────────────── */
.muted { color: var(--text-secondary); font-size: 0.85rem; }

/* ── Responsive base ─────────────────────────────────────── */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   Шапка службы и страницы слоя доступа (FEAT-5, часть Б)
   Только существующие токены: новый цвет здесь означает, что
   через полгода страницы разъедутся по оттенкам.
   ============================================================ */

/* ── Шапка службы ────────────────────────────────────────── */
/* Не «липкая» намеренно: у главной и у парсера свои прилипающие
   .page-header, и два прилипших блока накладываются друг на друга. */
.topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  min-height: 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.topbar-brand svg { color: var(--accent); flex-shrink: 0; }

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
}

.topbar-link {
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}

.topbar-link:hover { background: var(--surface-2); color: var(--text-primary); }

.topbar-link.is-active { background: var(--accent-light); color: var(--accent); }

.topbar-side {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Логин и версия стоят рядом: их спрашивают одним и тем же вопросом. */
.topbar-identity {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--t);
}

.topbar-identity:hover { background: var(--surface-2); }

.topbar-login {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-primary);
}

.topbar-version {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.topbar-logout { display: flex; }

/* ── Каркас страницы ─────────────────────────────────────── */
.app-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Отступы главной заданы в styles.css — там своя сетка плиток. */
.app-body .page-content {
  flex: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.app-body .page-content.content-narrow { max-width: 660px; }

.app-body .page-content.content-center {
  display: flex;
  /* Колонкой, а не строкой: блок сообщений — сосед содержимого страницы
     в этом же контейнере, и в строке он вставал СЛЕВА от карточки входа,
     сдвигая её от центра. Сообщение должно стоять над формой. */
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8vh;
}

/* Сообщение по ширине карточки — иначе оно тянется во всю страницу
   и перестаёт читаться как часть формы. */
.app-body .page-content.content-center .flashes {
  width: 100%;
  max-width: 380px;
}

.app-footer {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 14px 20px 20px;
  font-size: 0.73rem;
  color: var(--text-muted);
}

.page-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.page-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card-title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ── Карточка ────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  margin-bottom: 18px;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.stack { display: flex; flex-direction: column; gap: 14px; }

.inline-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.inline-form .field { flex: 1; min-width: 220px; }

.field-static {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

.btn-wide { width: 100%; justify-content: center; }

.btn-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
}

.btn-link:hover { color: var(--accent); }
.btn-link-accent { color: var(--accent); }

.btn-clear {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.btn-clear:hover { color: var(--error); }

/* ── Страница входа и страница отказа ────────────────────── */
.auth-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px 24px;
}

.auth-card-title {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.auth-card-hint {
  margin: 0 0 18px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.denied-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--error-light);
  color: var(--error);
}

/* ── Сообщения службы ────────────────────────────────────── */
.flashes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
}

.flash {
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.85rem;
  /* Временный пароль показывается ровно один раз и ровно здесь —
     без переноса длинная строка уедет за край. */
  overflow-wrap: anywhere;
}

/* Обёртка для страниц со своим оформлением: там сообщения лежат не внутри
   .page-content, и без неё растянулись бы от края до края. Отступы навешены
   на .flashes, а не на обёртку: пустая обёртка не должна оставлять полосу. */
.page-flashes .flashes {
  max-width: 1160px;
  margin: 14px auto 0;
  padding: 0 20px;
}

.flash-success { background: var(--success-light); border-color: #a7f3d0; color: #065f46; }
.flash-error   { background: var(--error-light);   border-color: #fca5a5; color: #991b1b; }
.flash-warning { background: var(--warning-light); border-color: #fcd34d; color: #92400e; }
.flash-info    { background: var(--accent-light);  border-color: #c7d2fe; color: var(--accent-hover); }

.notice {
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.notice-warning { background: var(--warning-light); border-color: #fcd34d; color: #92400e; }
.notice-info    { background: var(--accent-light);  border-color: #c7d2fe; color: var(--accent-hover); }

/* ── Описания «ключ — значение» ──────────────────────────── */
.kv {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 9px 16px;
  margin: 0;
}

.kv dt { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.kv dd { margin: 0; font-size: 0.88rem; }
.kv-compact { grid-template-columns: 120px minmax(0, 1fr); gap: 6px 12px; text-align: left; }

/* ── Панель над таблицей ─────────────────────────────────── */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.toolbar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.toolbar-search input[type="search"] {
  width: 260px;
  padding: 8px 11px;
  font-size: 0.85rem;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}

.toolbar-search input[type="search"]:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}

.toolbar-count { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* ── Таблицы ─────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.data-table th,
.data-table td {
  padding: 9px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.data-table thead th {
  background: var(--surface-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--surface-2); }

.th-sortable a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.th-sortable a:hover { color: var(--accent); }
.th-sortable.is-sorted { color: var(--accent); }
.sort-arrow { font-size: 0.62rem; }

.cell-strong { font-weight: 600; color: var(--text-primary); }
.cell-nowrap { white-space: nowrap; }
.cell-empty  { text-align: center; color: var(--text-muted); padding: 22px 12px; }
.col-actions { width: 1%; white-space: nowrap; }
.col-when    { width: 132px; }
.col-details { min-width: 220px; max-width: 420px; }

/* Длинное значение (JSON подробностей, адрес) ломается по любому месту:
   иначе одна строка растягивает таблицу за край экрана. */
.wrap-any { overflow-wrap: anywhere; word-break: break-word; }

.code-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  white-space: nowrap;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.row-actions form { display: flex; margin: 0; }

/* ── Пагинация ───────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t), color var(--t), border-color var(--t);
}

.page-link:hover { background: var(--accent-light); color: var(--accent); border-color: #c7d2fe; }

.page-link.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.page-link.is-disabled {
  color: var(--text-muted);
  pointer-events: none;
  opacity: .5;
}

.page-gap { color: var(--text-muted); padding: 0 2px; }

/* ── Узкий экран ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .topbar { flex-wrap: wrap; gap: 10px; padding: 8px 14px; }
  .topbar-nav { order: 3; width: 100%; }
  .topbar-brand-name { display: none; }
  .app-body .page-content { padding: 16px 12px 36px; }
  .kv, .kv-compact { grid-template-columns: 1fr; gap: 2px 0; }
  .kv dd { margin-bottom: 8px; }
  .toolbar-search input[type="search"] { width: 100%; }
}


/* ── Выданный временный пароль ────────────────────────────────────────────
   Показывается один раз, поэтому подаётся отдельным блоком, а не строкой
   в общем сообщении: рядовое уведомление легко пролистать, и тогда учётную
   запись приходится сбрасывать заново. */
.credential-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--success);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  max-width: 560px;
}

.credential-hint {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.credential-pair {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 16px;
  margin: 0;
  align-items: center;
}

.credential-pair dt {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.credential-pair dd {
  margin: 0;
  min-width: 0;
}

.credential-value {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 9px;
  /* Пароль читают с экрана и переписывают руками — мельче делать нельзя. */
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.credential-password {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.credential-secret {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
