/* Warm, high-clarity content studio */
.page-content-admin .app-main,
.page-content-editor .app-main {
  background:
    radial-gradient(circle at 96% 2%, rgba(232, 117, 157, .18), transparent 25%),
    radial-gradient(circle at 0 26%, rgba(104, 166, 124, .14), transparent 28%);
}

.page-content-editor .app-main {
  padding-bottom: calc(var(--nav-height) + 92px + env(safe-area-inset-bottom));
}

.content-admin-hero {
  position: relative;
  display: grid;
  min-height: 176px;
  align-content: end;
  overflow: hidden;
  margin-bottom: 12px;
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,217,179,.3), transparent 25%),
    radial-gradient(circle at 8% 88%, rgba(115,190,142,.26), transparent 30%),
    linear-gradient(135deg, #263e32 0%, #314b3c 48%, #9e4669 118%);
  box-shadow: 0 22px 46px rgba(45,72,56,.2);
}

.content-admin-hero::after {
  position: absolute;
  top: -62px;
  right: -36px;
  width: 158px;
  height: 158px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255,255,255,.025), 0 0 0 48px rgba(255,255,255,.014);
  content: "";
}

.content-admin-hero > div { position: relative; z-index: 1; max-width: 280px; }
.content-admin-hero span { display: block; margin-bottom: 8px; color: #dceadd; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.content-admin-hero h2 { margin: 0 0 7px; color: #fff; font: 700 25px/1.2 Georgia, "STKaiti", serif; }
.content-admin-hero p { margin: 0; color: rgba(255,255,255,.72); font-size: 10px; line-height: 1.65; }
.content-admin-hero > a {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 17px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.content-admin-overview { margin-bottom: 13px; }
.content-admin-jump { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 22px; }
.content-admin-jump a {
  display: grid;
  min-width: 0;
  justify-items: center;
  padding: 11px 3px 10px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 26px rgba(41,66,50,.06);
  text-decoration: none;
}
.content-admin-jump span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 6px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, #6e9a7a, #416d50);
  font: 700 15px/1 "STKaiti", Georgia, serif;
  box-shadow: 0 7px 14px rgba(65,109,80,.16);
}
.content-admin-jump a:nth-child(2) span { background: linear-gradient(145deg, #dc789c, #b74b72); }
.content-admin-jump a:nth-child(3) span { background: linear-gradient(145deg, #b28b52, #896735); }
.content-admin-jump a:nth-child(4) span { background: linear-gradient(145deg, #82719d, #5d4d77); }
.content-admin-jump strong,
.content-admin-jump small { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.content-admin-jump strong { font-size: 11px; }
.content-admin-jump small { margin-top: 2px; color: var(--muted); font-size: 8px; }

.content-admin-section { scroll-margin-top: 10px; }
.content-manage-list { display: grid; gap: 10px; }
.content-manage-card {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 12px;
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 22px;
  background: rgba(255,253,250,.94);
  box-shadow: 0 12px 30px rgba(43,66,51,.07);
}
.content-manage-card > img { width: 92px; height: 104px; border-radius: 16px; object-fit: cover; background: var(--green-soft); }
.content-manage-card__body { display: flex; min-width: 0; flex-direction: column; }
.content-manage-card__meta,
.content-manage-card__actions { display: flex; gap: 7px; align-items: center; justify-content: space-between; }
.content-manage-card__meta > span:first-child { min-width: 0; overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.content-state { flex: 0 0 auto; padding: 4px 7px; border-radius: 999px; color: #3d7b51; background: rgba(83,157,105,.11); font-size: 8px; font-weight: 800; }
.content-state--draft,
.content-state--inactive { color: #946b39; background: rgba(184,132,67,.11); }
.content-state--archived { color: #7b7480; background: rgba(115,106,122,.1); }
.content-manage-card__body > strong { display: -webkit-box; margin: 7px 0 4px; overflow: hidden; color: var(--ink); font-size: 13px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.content-manage-card__body > small { display: -webkit-box; min-height: 25px; overflow: hidden; color: var(--muted); font-size: 8px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.content-manage-card__actions { margin-top: auto; }
.content-manage-card__actions a,
.content-manage-card__actions button { display: inline-flex; min-height: 30px; align-items: center; justify-content: center; border: 0; border-radius: 10px; font: inherit; font-size: 9px; font-weight: 800; text-decoration: none; }
.content-manage-card__actions a { min-width: 74px; padding: 0 10px; color: #9f365c; background: #f9e8ee; }
.content-manage-card__actions button { min-width: 50px; padding: 0 8px; color: #65716a; background: #eef2ef; }

.content-audit-list { overflow: hidden; border: 1px solid rgba(255,255,255,.88); border-radius: 22px; background: rgba(255,253,250,.94); box-shadow: var(--shadow-soft); }
.content-audit-row { display: grid; grid-template-columns: 34px minmax(0,1fr) auto; gap: 10px; align-items: center; min-height: 61px; margin: 0 14px; border-bottom: 1px solid rgba(63,54,56,.07); }
.content-audit-row:last-child { border-bottom: 0; }
.content-audit-row > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 11px; color: #8f4762; background: #f7e9ee; font: 700 13px/1 "STKaiti", Georgia, serif; }
.content-audit-row strong,
.content-audit-row small { display: block; }
.content-audit-row strong { overflow: hidden; color: var(--ink); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.content-audit-row small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.content-audit-row > i { color: var(--muted); font-size: 8px; font-style: normal; }
.manage-empty--compact { min-height: 180px; }

.content-editor-form { display: grid; gap: 13px; }
.page-content-editor .content-editor-form { animation: none; }
.content-editor-preview,
.content-brand-preview {
  display: grid;
  grid-template-columns: 104px minmax(0,1fr);
  gap: 15px;
  align-items: center;
  min-height: 142px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 26px;
  background: radial-gradient(circle at 90% 10%, rgba(238,118,159,.13), transparent 32%), linear-gradient(135deg, rgba(255,255,255,.96), rgba(235,247,238,.94));
  box-shadow: 0 17px 38px rgba(46,72,55,.09);
}
.content-editor-preview > img { width: 104px; height: 108px; border-radius: 19px; object-fit: cover; background: var(--green-soft); box-shadow: 0 11px 22px rgba(53,79,61,.13); }
.content-editor-preview span,
.content-editor-preview strong,
.content-editor-preview small { display: block; }
.content-editor-preview span { margin-bottom: 6px; color: #a34e6c; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.content-editor-preview strong { display: -webkit-box; overflow: hidden; color: var(--ink); font: 700 17px/1.38 Georgia, "STKaiti", serif; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.content-editor-preview small { margin-top: 7px; color: var(--muted); font-size: 8px; line-height: 1.55; }
.content-editor-preview--benefit { background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(255,235,243,.94)); }
.content-editor-preview--reward { background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(241,232,213,.93)); }

.content-editor-card { padding: 17px; border: 1px solid rgba(255,255,255,.88); border-radius: 24px; background: rgba(255,253,250,.94); box-shadow: 0 13px 32px rgba(43,66,51,.065); }
.content-editor-card__title { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.content-editor-card__title > span { display: grid; width: 29px; height: 29px; place-items: center; flex: 0 0 auto; border-radius: 11px; color: #fff; background: linear-gradient(145deg, #d4678d, #a53b62); font-size: 8px; font-weight: 800; box-shadow: 0 8px 16px rgba(165,59,98,.16); }
.content-editor-card__title h2 { margin: 0; color: var(--ink); font-size: 14px; }
.content-editor-card__title p { margin: 3px 0 0; color: var(--muted); font-size: 8px; }
.content-field { display: grid; gap: 7px; margin-top: 12px; }
.content-field > span { display: flex; justify-content: space-between; gap: 8px; color: #4a574f; font-size: 10px; font-weight: 800; }
.content-field > span small { color: var(--muted); font-size: 8px; font-weight: 500; }
.content-field input,
.content-field textarea,
.content-field select { width: 100%; min-width: 0; border: 1px solid #e3e9e4; border-radius: 14px; outline: none; background: #fafcfb; color: var(--text); font: inherit; font-size: 11px; transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.content-field input,
.content-field select { min-height: 45px; padding: 0 12px; }
.content-field textarea { padding: 11px 12px; resize: vertical; line-height: 1.65; }
.content-field__article { min-height: 248px; }
.content-field input:focus,
.content-field textarea:focus,
.content-field select:focus { border-color: rgba(213,83,131,.4); background: #fff; box-shadow: 0 0 0 4px rgba(213,83,131,.065); }
.content-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.content-upload { position: relative; display: grid; min-height: 86px; place-items: center; margin-top: 12px; padding: 13px; border: 1px dashed rgba(176,84,118,.28); border-radius: 17px; color: #a34769; background: rgba(250,233,240,.52); text-align: center; cursor: pointer; }
.content-upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.content-upload span,
.content-upload small { display: block; }
.content-upload span { font-size: 11px; font-weight: 800; }
.content-upload small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.content-upload.is-selected { border-style: solid; border-color: rgba(77,147,99,.3); color: #417c53; background: rgba(228,244,233,.72); }

.content-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.content-check,
.content-switch { display: flex; gap: 9px; align-items: center; padding: 12px; border: 1px solid rgba(63,54,56,.08); border-radius: 16px; background: #fafcfb; }
.content-check input { width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--pink-strong); }
.content-check strong,
.content-check small,
.content-switch strong,
.content-switch small { display: block; }
.content-check strong,
.content-switch strong { font-size: 10px; }
.content-check small,
.content-switch small { margin-top: 2px; color: var(--muted); font-size: 8px; }

.content-switch { position: relative; margin-top: 12px; padding-right: 58px; }
.content-switch > input { position: absolute; opacity: 0; }
.content-switch > i { position: absolute; right: 13px; width: 38px; height: 22px; border-radius: 999px; background: #d8ded9; transition: background 180ms ease; }
.content-switch > i::after { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 3px 8px rgba(43,55,47,.18); transition: transform 180ms ease; content: ""; }
.content-switch:has(input:checked) > i { background: linear-gradient(135deg, #e16690, #be456f); }
.content-switch:has(input:checked) > i::after { transform: translateX(16px); }

.content-save-bar { position: fixed; z-index: 30; right: 50%; bottom: calc(var(--nav-height) + 8px + env(safe-area-inset-bottom)); display: grid; width: min(406px, calc(100vw - 24px)); grid-template-columns: minmax(0,1fr) 128px; gap: 10px; align-items: center; margin-top: 1px; padding: 10px; border: 1px solid rgba(255,255,255,.74); border-radius: 20px; background: rgba(255,253,250,.88); box-shadow: 0 17px 38px rgba(38,54,43,.17); transform: translateX(50%); backdrop-filter: blur(16px); }
.content-save-bar > span { display: flex; gap: 6px; align-items: center; color: var(--muted); font-size: 8px; line-height: 1.4; }
.content-save-bar > span i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #58a76c; box-shadow: 0 0 0 4px rgba(88,167,108,.1); }
.content-save-bar .primary-button { width: 100%; min-height: 45px; border-radius: 14px; }

.content-brand-preview { grid-template-columns: 64px minmax(0,1fr); min-height: 130px; background: radial-gradient(circle at 90% 15%, rgba(211,100,91,.13), transparent 28%), linear-gradient(135deg, #f8f0e5, #edf5ee); }
.content-brand-preview > span { display: grid; width: 62px; height: 62px; place-items: center; border-radius: 20px; color: #fff; background: linear-gradient(145deg, #d75f55, #9f362e); font: 700 29px/1 "STKaiti", Georgia, serif; box-shadow: 0 13px 24px rgba(164,60,50,.2); }
.content-brand-preview strong,
.content-brand-preview b,
.content-brand-preview small { display: block; }
.content-brand-preview strong { color: #3c322b; font: 700 23px/1.2 Georgia, "STKaiti", serif; }
.content-brand-preview b { margin: 4px 0; color: #775d4d; font: 700 14px/1.2 "STKaiti", Georgia, serif; }
.content-brand-preview small { color: #79867d; font-size: 8px; }
.notice-sheet-copy { margin: 3px 0 13px; padding: 11px 13px; border-radius: 14px; color: #58665d; background: rgba(89,153,108,.08); font-size: 10px; line-height: 1.65; }

@media (prefers-color-scheme: dark) {
  .content-admin-jump a,
  .content-manage-card,
  .content-audit-list,
  .content-editor-preview,
  .content-editor-card,
  .content-save-bar { border-color: rgba(255,255,255,.075); background-color: rgba(24,29,25,.96); }
  .content-admin-jump a,
  .content-manage-card__body > strong,
  .content-audit-row strong,
  .content-editor-preview strong,
  .content-editor-card__title h2,
  .content-field > span,
  .content-check strong,
  .content-switch strong { color: #edf1eb; }
  .content-field input,
  .content-field textarea,
  .content-field select,
  .content-check,
  .content-switch { border-color: rgba(255,255,255,.085); color: #edf1eb; background: rgba(255,255,255,.045); }
  .content-upload { border-color: rgba(235,111,154,.22); background: rgba(217,77,127,.08); }
  .content-brand-preview { background: linear-gradient(135deg, #29231e, #1b2b21); }
  .content-brand-preview strong { color: #f0e8dc; }
  .content-brand-preview b { color: #ceb6a5; }
  .notice-sheet-copy { color: #bac6bd; background: rgba(89,153,108,.1); }
}

@media (max-width: 340px) {
  .content-admin-hero { min-height: 168px; padding: 19px 16px; }
  .content-admin-jump { gap: 5px; }
  .content-manage-card { grid-template-columns: 76px minmax(0,1fr); gap: 10px; }
  .content-manage-card > img { width: 76px; height: 98px; }
  .content-editor-preview { grid-template-columns: 84px minmax(0,1fr); gap: 12px; padding: 13px; }
  .content-editor-preview > img { width: 84px; height: 94px; }
  .content-field-grid,
  .content-choice-grid { grid-template-columns: 1fr; gap: 0; }
  .content-save-bar { grid-template-columns: 1fr 116px; }
}

/* Independent administrator access */
.page-admin-login {
  background: #203329;
}

.page-admin-login .app-shell {
  background:
    radial-gradient(circle at 92% 7%, rgba(235, 145, 174, .16), transparent 29%),
    radial-gradient(circle at 6% 38%, rgba(144, 194, 156, .13), transparent 27%),
    linear-gradient(180deg, #203329 0, #294237 42%, #f5f1e9 42.1%, #f7f3ec 100%) !important;
}

.page-admin-login .app-shell::before { display: none; }
.page-admin-login .app-main {
  min-height: 100dvh;
  padding: 0;
  background: transparent;
}

.admin-login-scene {
  min-height: 100dvh;
  padding: max(14px, env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
}

.admin-login-topbar {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  color: rgba(255, 255, 255, .9);
}

.admin-login-topbar > a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.admin-login-topbar svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.admin-login-topbar > span {
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-login-brand {
  min-height: 250px;
  padding: 36px 9px 30px;
  color: #fff;
}

.admin-login-brand__mark {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .055));
  box-shadow: 0 18px 38px rgba(10, 28, 19, .24);
  backdrop-filter: blur(16px);
}

.admin-login-brand__mark > span {
  font: 700 29px/1 "STKaiti", Georgia, serif;
}

.admin-login-brand__mark > svg {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(145deg, #df6f96, #b8456e);
  box-shadow: 0 8px 16px rgba(151, 47, 84, .32);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.admin-login-brand > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(219, 235, 223, .72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.admin-login-brand h1 {
  margin: 0 0 9px;
  color: #fff;
  font: 700 31px/1.15 Georgia, "STKaiti", serif;
  letter-spacing: .02em;
}

.admin-login-brand p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  line-height: 1.75;
}

.admin-login-card {
  position: relative;
  margin-top: -5px;
  padding: 22px 19px 18px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 28px;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 25px 58px rgba(34, 50, 41, .17);
}

.admin-login-card::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 48px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, #d96790, #69a47a);
  content: "";
}

.admin-login-card__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 19px;
}

.admin-login-card__head > div > span {
  display: block;
  margin-bottom: 4px;
  color: #a26a80;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.admin-login-card__head h2 {
  margin: 0;
  color: #2f3d34;
  font-size: 18px;
}

.admin-login-secure {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  color: #52735d;
  background: rgba(87, 145, 104, .09);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-login-secure i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62a776;
  box-shadow: 0 0 0 4px rgba(98, 167, 118, .1);
}

.admin-login-feedback {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: -3px 0 14px;
  padding: 10px 11px;
  border: 1px solid rgba(193, 78, 110, .11);
  border-radius: 14px;
  color: #9b415d;
  background: rgba(225, 101, 140, .075);
  font-size: 9px;
  line-height: 1.55;
}

.admin-login-feedback--success {
  border-color: rgba(73, 143, 94, .12);
  color: #447954;
  background: rgba(83, 157, 105, .08);
}

.admin-login-feedback svg {
  width: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.admin-login-form,
.admin-login-form > label {
  display: grid;
}

.admin-login-form { gap: 14px; }
.admin-login-form > label { gap: 7px; }
.admin-login-form > label > span {
  color: #536058;
  font-size: 9px;
  font-weight: 800;
}

.admin-login-input {
  display: grid;
  min-height: 50px;
  grid-template-columns: 21px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #e2e7e2;
  border-radius: 16px;
  background: #f9faf8;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.admin-login-input:focus-within {
  border-color: rgba(74, 125, 89, .42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(74, 125, 89, .07);
}

.admin-login-input > svg {
  width: 18px;
  color: #789184;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.admin-login-input input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  color: #2d3932;
  background: transparent;
  font: inherit;
  font-size: 12px;
}

.admin-login-input input::placeholder { color: #a5ada8; }
.admin-login-input--password { grid-template-columns: 21px minmax(0, 1fr) 32px; }
.admin-login-input .password-toggle {
  width: 32px;
  height: 38px;
  color: #87938b;
}

.admin-login-submit {
  display: grid;
  min-height: 51px;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  margin-top: 3px;
  padding: 0 16px 0 22px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0, rgba(255, 255, 255, .18), transparent 35%),
    linear-gradient(135deg, #355a44, #294b38 62%, #704255 145%);
  box-shadow: 0 14px 25px rgba(43, 79, 56, .22);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}

.admin-login-submit svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.admin-login-submit:disabled {
  color: rgba(255, 255, 255, .7);
  background: #9da8a1;
  box-shadow: none;
}

.admin-login-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 15px;
  color: #859087;
  font-size: 8px;
  line-height: 1.55;
}

.admin-login-note svg {
  width: 15px;
  flex: 0 0 auto;
  color: #799082;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.admin-login-footer {
  margin: 17px 0 0;
  color: #878e89;
  font-size: 8px;
  text-align: center;
}

.admin-login-footer a { color: #54715d; font-weight: 800; text-decoration: none; }
.admin-logout-form { flex: 0 0 auto; }
.admin-logout-form button {
  min-width: 43px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(177, 73, 111, .15);
  border-radius: 999px;
  color: #a9466a;
  background: rgba(217, 91, 137, .08);
  font: inherit;
  font-size: 8px;
  font-weight: 800;
}

@media (prefers-color-scheme: dark) {
  .page-admin-login .app-shell {
    background:
      radial-gradient(circle at 92% 7%, rgba(235, 145, 174, .13), transparent 29%),
      radial-gradient(circle at 6% 38%, rgba(144, 194, 156, .1), transparent 27%),
      linear-gradient(180deg, #15221b 0, #1d3026 42%, #111512 42.1%, #111512 100%) !important;
  }
  .admin-login-card {
    border-color: rgba(255, 255, 255, .08);
    background: rgba(24, 29, 25, .97);
  }
  .admin-login-card__head h2,
  .admin-login-input input { color: #eef2ed; }
  .admin-login-form > label > span { color: #bdc7bf; }
  .admin-login-input { border-color: rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .045); }
  .admin-login-input:focus-within { background: rgba(255, 255, 255, .065); }
  .admin-login-footer { color: #879088; }
  .admin-login-footer a { color: #9fbaa7; }
}

@media (max-width: 340px) {
  .admin-login-scene { padding-right: 14px; padding-left: 14px; }
  .admin-login-brand { min-height: 232px; padding-top: 27px; }
  .admin-login-brand__mark { margin-bottom: 18px; }
  .admin-login-brand h1 { font-size: 28px; }
  .admin-login-card { padding-right: 16px; padding-left: 16px; border-radius: 25px; }
}
