:root {
  color-scheme: light;
  --pink: #df6792;
  --pink-dark: #b3426e;
  --pink-light: #fff0f6;
  --ink: #40333b;
  --muted: #95818c;
  --line: #eee6eb;
  --bg: #fbf9fb;
  --font:
    "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 14px/1.6 var(--font);
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
  touch-action: manipulation;
}
button:disabled {
  cursor: default;
  opacity: 0.5;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #dd85a7;
  outline-offset: 3px;
}
input,
select,
textarea {
  border: 1px solid #e7dce3;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
  max-width: 100%;
  min-width: 0;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #d57a9d;
  box-shadow: 0 0 0 3px #e784a51a;
}
input::placeholder,
textarea::placeholder {
  color: #b39eaa;
}
textarea {
  resize: vertical;
}
label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 16px 0;
  font-weight: 500;
  font-size: 13px;
}
label input,
label select,
label textarea {
  width: 100%;
  font-weight: 400;
}
.muted {
  color: var(--muted);
  font-size: 13px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #ba8b9f;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #e8dfe5;
  background: #fff;
  color: #675360;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.15s;
  min-height: 40px;
}
.btn:hover:not(:disabled) {
  border-color: #da9fb7;
  background: #fff6fa;
}
.btn.primary {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 3px 6px #bc3b6a0c;
}
.btn.primary:hover:not(:disabled) {
  background: #cc5480;
  border-color: #cc5480;
  transform: translateY(-1px);
}
.btn.small {
  padding: 5px 11px;
  font-size: 12px;
  min-height: 31px;
}
.btn.subtle {
  background: transparent;
}
.btn.danger {
  color: #b94359;
  background: #fff1f3;
  border-color: #f2cbd3;
}
.icon-button {
  border: 0;
  background: transparent;
  color: #a08b97;
  font-size: 22px;
  line-height: 1;
  padding: 8px;
  border-radius: 6px;
}
.icon-button:hover {
  background: #fff0f5;
}
.text-button {
  border: 0;
  background: none;
  padding: 0;
  color: #b36585;
  font-size: 12px;
  text-align: left;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.bow {
  font-size: 40px;
  color: var(--pink);
  line-height: 1;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: #b99aa9;
  font-weight: 400;
  margin-top: 1px;
}
.app-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 35px 19px 0;
  display: flex;
  flex-direction: column;
}
.sidebar > .brand {
  margin: 0 6px;
}
.nav-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: #bba7b2;
  margin: 44px 17px 13px;
}
.nav-item {
  width: 100%;
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 14px;
  border: 0;
  background: transparent;
  color: #8f7785;
  border-radius: 9px;
  padding: 12px 16px;
  text-align: left;
  margin-bottom: 7px;
}
.nav-item > span:first-child {
  font-size: 21px;
  width: 21px;
  line-height: 1.1;
  font-weight: 400;
}
.nav-item:hover {
  background: #fff8fb;
}
.nav-item.selected {
  background: #fdeaf2;
  color: #bd537c;
  font-weight: 600;
}
.nav-count {
  font-size: 10px !important;
  background: #e380a4;
  color: #fff;
  border-radius: 5px;
  min-width: 18px;
  text-align: center;
  margin-left: auto;
  padding: 0 4px;
}
.sidebar-note {
  margin: auto 4px 28px;
  padding: 15px 10px 17px;
  text-align: center;
  background: linear-gradient(#fff8fb, #fff2f7);
  border: 1px solid #f6e5ed;
  border-radius: 12px;
}
.sidebar-note img {
  display: block;
  margin: 0 auto 6px;
}
.sidebar-note strong {
  font-size: 11px;
  font-weight: 500;
  color: #aa718a;
}
.sidebar-note p {
  color: #b294a2;
  font-size: 10px;
  line-height: 1.9;
  margin: 7px 0 0;
}
.sidebar-bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 21px 5px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: #fce9f1;
  color: #c36d90;
  border: 1px solid #f2d5e1;
  border-radius: 10px;
  font-weight: 600;
}
.sidebar-bottom > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-bottom strong {
  font-size: 12px;
  max-width: 94px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-bottom > .icon-button {
  margin-left: auto;
}
.workspace {
  min-width: 0;
}
.workspace-top {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: #ffffffbd;
  padding: 0 36px;
  color: #a18b98;
  font-size: 12px;
}
.workspace-top strong {
  font-weight: 500;
  color: #76606d;
}
.crumb-slash {
  margin: 0 12px;
  color: #d5c7cf;
}
.top-date {
  margin-left: auto;
  font-size: 11px;
}
.workspace-body {
  max-width: 1600px;
  margin: auto;
  padding: 32px 36px;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 27px;
}
.page-heading h1 {
  font-size: 27px;
  font-weight: 650;
  letter-spacing: 1px;
  margin: 5px 0;
}
.page-heading p {
  font-size: 12px;
  color: #a08b98;
  margin: 4px 0 0;
}
.heading-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin-bottom: 27px;
}
.stat {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 18px 21px;
}
.stat > span {
  display: block;
  font-size: 12px;
  color: #998390;
}
.stat small {
  font-size: 9px;
  color: #b6a3ad;
  margin-left: 3px;
}
.stat strong {
  font-size: 30px;
  font-weight: 600;
  display: block;
  margin-top: 9px;
  line-height: 1.2;
  font-family: system-ui, sans-serif;
}
.stat-icon {
  position: absolute;
  right: 19px;
  top: 20px;
  display: grid;
  place-items: center;
  background: #fff1f6;
  color: #d987a6;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  font-style: normal;
  font-size: 19px;
}
.stat.warning .stat-icon {
  background: #fff6e8;
  color: #d4a358;
}
.stat.warning strong {
  color: #c29857;
}
.panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 2px 5px #68445702;
}
.panel-toolbar {
  min-height: 76px;
  padding: 17px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-title {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.count-tag {
  background: #f7f3f6;
  border: 1px solid #eee7eb;
  color: #a08796;
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 400;
}
.panel-toolbar input {
  font-size: 12px;
  width: 220px;
  padding: 8px 12px;
}
.filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filters select {
  font-size: 12px;
  padding: 6px 9px;
  max-width: 230px;
}
.table-scroll {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
}
th {
  font-weight: 500;
  color: #a28c99;
  background: #fcf9fb;
  font-size: 11px;
  padding: 13px 21px;
  border-top: 1px solid #f5eef2;
  border-bottom: 1px solid var(--line);
}
td {
  padding: 18px 21px;
  border-bottom: 1px solid #f2edf0;
  color: #846d7b;
}
tbody tr:last-child td {
  border-bottom: 0;
}
tbody tr:hover:not(.empty-row) {
  background: #fffbfd;
}
.email-cell {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #5f4c58;
  font-weight: 500;
}
.email-avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #faf0f5;
  color: #c28ba3;
  font-size: 14px;
  width: 33px;
  height: 33px;
  border: 1px solid #f2e4ec;
  border-radius: 9px;
}
.remark {
  max-width: 160px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 5px;
  border: 1px solid #dfebe4;
  background: #f1f8f4;
  color: #69917b;
}
.badge.off {
  border-color: #e9e2e7;
  background: #f7f4f6;
  color: #ac97a4;
}
.badge.expired {
  border-color: #f1d1d9;
  background: #fff0f3;
  color: #bd5871;
}
.badge.soon {
  border-color: #f1e0bc;
  background: #fff8e9;
  color: #bc9252;
}
.link-number {
  display: inline-block;
  padding: 1px 8px;
  border: 1px solid #f0e5ec;
  background: #fcf5f9;
  border-radius: 5px;
  color: #b9829b;
  font-size: 11px;
}
.row-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}
.row-action {
  background: none;
  border: 0;
  color: #b56d8c;
  padding: 3px 0;
  font-size: 11px;
  white-space: nowrap;
}
.row-action:hover {
  text-decoration: underline;
}
.row-action.danger {
  color: #b98c98;
}
.action-divider {
  height: 11px;
  width: 1px;
  background: #eee0e7;
  margin: 0 1px;
}
.actions-heading {
  text-align: left;
}
.panel-foot {
  border-top: 1px solid var(--line);
  padding: 13px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #b39eab;
  gap: 16px;
  flex-wrap: wrap;
}
.empty-state {
  text-align: center;
  padding: 58px 20px 61px;
  white-space: normal;
}
.empty-state .empty-symbol {
  color: #dcb3c6;
  background: #fff2f7;
  border: 1px dashed #eacbd9;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 26px;
  border-radius: 16px;
  margin: 0 auto 14px;
}
.empty-state strong {
  display: block;
  font-size: 14px;
  color: #947685;
  font-weight: 500;
}
.empty-state p {
  color: #b297a6;
  font-size: 12px;
  margin: 6px 0 17px;
}
.workspace-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  color: #bfa8b5;
  margin-top: 30px;
}
.workspace-footer span {
  color: #d5a1b8;
}
.link-url {
  display: block;
  color: #b76589;
  font-size: 11px;
  white-space: normal;
  overflow-wrap: anywhere;
  min-width: 250px;
  max-width: 330px;
  line-height: 1.7;
  margin: 7px 0 2px;
}
.link-url:hover {
  text-decoration: underline;
}
.link-owner {
  font-size: 11px;
  color: #9d8994;
}
.links-table td {
  vertical-align: top;
}
.date-sub {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  color: #a9909e;
}
.text-expired {
  color: #bd516f;
}
.text-soon {
  color: #bd9351;
}
.notice {
  margin: 0 23px 18px;
  padding: 12px 15px;
  border: 1px solid #f3dfb8;
  background: #fff9ec;
  color: #a68858;
  font-size: 12px;
  border-radius: 8px;
  white-space: pre-line;
}
.tool-panel {
  max-width: 660px;
  padding: 30px 40px;
  margin: 0 auto;
}
.tool-heading {
  text-align: center;
}
.tool-icon {
  display: grid;
  place-items: center;
  margin: auto;
  font-size: 32px;
  border-radius: 18px;
  background: #fff1f6;
  color: #d7789d;
  width: 65px;
  height: 65px;
}
.tool-heading h2 {
  font-size: 20px;
  margin-bottom: 5px;
}
.tool-heading p {
  font-size: 13px;
  color: #a08695;
}
.tool-panel form {
  max-width: 420px;
  margin: 25px auto 0;
}
.tool-panel form .btn {
  width: 100%;
}
.tool-panel label {
  margin-top: 20px;
}
.tool-panel > p {
  text-align: center;
}
.tool-note {
  font-size: 11px;
  color: #ae94a2;
  margin-top: 30px;
}
.test-code-result {
  display: block;
  width: 100%;
  background: #fff4f8;
  border: 1px dashed #e5aac2;
  border-radius: 12px;
  padding: 12px;
  color: #b44f78;
  font-family: monospace;
  font-size: 42px;
  letter-spacing: 8px;
  margin-top: 26px;
}
.log-result {
  white-space: normal;
  min-width: 180px;
  max-width: 380px;
  overflow-wrap: anywhere;
}
.log-code {
  font-family: monospace;
  font-size: 16px;
  letter-spacing: 2px;
  color: #b46787;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination > span {
  color: #876c7b;
  font-size: 12px;
}
dialog {
  border: 1px solid #eddee6;
  border-radius: 17px;
  padding: 24px 28px;
  max-width: 560px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow: auto;
  color: var(--ink);
  box-shadow: 0 24px 80px #5033452e;
}
dialog::backdrop {
  background: #49314360;
  backdrop-filter: blur(4px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.dialog-heading h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.dialog-heading .icon-button {
  font-size: 25px;
}
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 23px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-grid label {
  margin: 8px 0;
}
.field-help {
  font-size: 11px;
  color: #aa8c9d;
  font-weight: 400;
  margin: 7px 0 10px;
}
.checkbox-label {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--pink);
}
.quick-dates {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
}
.quick-dates .field-help {
  margin: 0;
}
.optional {
  color: #b49eab;
  font-size: 11px;
  font-weight: 400;
}
.form-error {
  color: #b84369;
  font-size: 12px;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.form-error:empty {
  display: none;
}
dialog .notice {
  margin: 15px 0 0;
}
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  max-width: calc(100% - 32px);
  width: max-content;
  padding: 12px 22px;
  background: #715062;
  color: #fff;
  font-size: 13px;
  border-radius: 10px;
  box-shadow: 0 8px 30px #542c4126;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast-error {
  background: #ae3f61;
}
.clipboard-fallback {
  position: fixed;
  top: 0;
  left: -9999px;
}
.boot-loading {
  display: grid;
  place-items: center;
  height: 100vh;
  color: #a47a90;
}
.login-view {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(ellipse at 25% 22%, #ffe4ef80, transparent 48%),
    linear-gradient(135deg, #fff6fa, #fceff5);
}
.login-card {
  width: 440px;
  max-width: 100%;
  padding: 34px 42px;
  background: #ffffffec;
  border: 1px solid #fff;
  border-radius: 22px;
  box-shadow: 0 18px 65px #bd628719;
  text-align: center;
}
.login-card .brand {
  justify-content: center;
  font-size: 18px;
}
.login-card .bow {
  font-size: 34px;
}
.login-cat {
  display: block;
  margin: 20px auto 6px;
}
.login-card h1 {
  font-size: 24px;
  margin: 9px 0 3px;
}
.login-card .muted {
  font-size: 12px;
  margin: 6px 0 25px;
}
.login-card form {
  text-align: left;
}
.login-card label {
  font-size: 12px;
}
.login-card input {
  padding: 12px;
  font-size: 14px;
}
.login-submit {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
}
.login-submit span {
  margin-left: auto;
}
.login-note {
  font-size: 10px;
  color: #bba1af;
  margin: 24px 0 0;
}
.login-view > footer {
  font-size: 11px;
  color: #b89eac;
  margin-top: 27px;
}
@media (min-width: 1600px) {
  .workspace-body {
    padding-top: 43px;
  }
  .stats {
    gap: 22px;
  }
  .stat {
    padding: 23px;
  }
  .panel-toolbar {
    padding: 23px;
  }
}
@media (max-width: 1200px) {
  .app-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .sidebar {
    padding-left: 13px;
    padding-right: 13px;
  }
  .sidebar .brand {
    font-size: 17px;
    gap: 8px;
  }
  .workspace-body {
    padding: 27px 24px;
  }
  .workspace-top {
    padding: 0 24px;
  }
  .stats {
    gap: 12px;
  }
  .stat {
    padding: 17px 14px;
  }
  .stat-icon {
    right: 13px;
    width: 26px;
    height: 26px;
    font-size: 17px;
  }
  .stat small {
    display: none;
  }
  th,
  td {
    padding-left: 16px;
    padding-right: 16px;
  }
  .panel-toolbar {
    flex-wrap: wrap;
  }
  .page-heading h1 {
    font-size: 24px;
  }
}
@media (max-width: 760px) {
  .app-layout {
    display: block;
  }
  .sidebar {
    position: relative;
    height: auto;
    padding: 14px 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: block;
  }
  .sidebar > .brand {
    font-size: 17px;
    width: max-content;
  }
  .sidebar .bow {
    font-size: 34px;
  }
  .brand small {
    display: none;
  }
  .nav-label,
  .sidebar-note {
    display: none;
  }
  .sidebar nav {
    display: flex;
    overflow-x: auto;
    margin-top: 15px;
    gap: 7px;
  }
  .nav-item {
    width: auto;
    padding: 9px 11px;
    gap: 6px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 9px;
  }
  .nav-item > span:first-child {
    font-size: 16px;
    width: 16px;
  }
  .sidebar-bottom {
    position: absolute;
    right: 14px;
    top: 5px;
    border: 0;
    padding: 10px 0;
    gap: 8px;
  }
  .sidebar-bottom .avatar {
    display: none;
  }
  .sidebar-bottom strong {
    font-size: 10px;
  }
  .sidebar-bottom .text-button {
    font-size: 10px;
  }
  .sidebar-bottom .icon-button {
    font-size: 20px;
  }
  .workspace-top {
    height: 51px;
    padding: 0 20px;
    font-size: 11px;
    gap: 10px;
  }
  .top-date {
    display: none;
  }
  .workspace-top .btn {
    margin-left: auto;
  }
  .workspace-body {
    padding: 22px 17px;
  }
  .page-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 20px;
  }
  .page-heading h1 {
    font-size: 24px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .heading-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .heading-actions .btn {
    font-size: 12px;
    padding: 8px 13px;
    min-height: 36px;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-bottom: 20px;
  }
  .stat {
    padding: 15px 16px;
  }
  .stat strong {
    font-size: 27px;
  }
  .stat > span {
    font-size: 11px;
  }
  .stat-icon {
    right: 15px;
    top: 16px;
  }
  .panel-toolbar {
    padding: 16px;
    gap: 14px;
  }
  .panel-toolbar input {
    width: 100%;
    font-size: 13px;
  }
  .filters {
    width: 100%;
    gap: 7px;
  }
  .filters select {
    flex: 1;
    max-width: 100%;
    min-width: 100px;
  }
  .filters .btn {
    width: 100%;
    margin-top: 3px;
  }
  .panel-title {
    font-size: 14px;
  }
  .panel-foot {
    padding: 12px 16px;
  }
  .workspace-footer {
    font-size: 9px;
    gap: 6px;
  }
  .tool-panel {
    padding: 27px 21px;
  }
  .tool-heading h2 {
    font-size: 18px;
  }
  .tool-heading p {
    font-size: 12px;
  }
  .notice {
    margin-left: 16px;
    margin-right: 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .login-card {
    padding: 27px 26px;
  }
  .login-card h1 {
    font-size: 22px;
  }
  dialog {
    padding: 22px;
  }
  .dialog-heading h2 {
    font-size: 18px;
  }
  .login-view {
    padding: 25px 20px;
  }
  .nav-count {
    display: none;
  }
}
.bow,
.login-card .bow,
.sidebar .bow {
  display: block;
  flex-shrink: 0;
  width: 38px;
  height: 33px;
  background: url("/bow.svg") center/contain no-repeat;
  font-size: 0;
}
.row-action {
  font-size: 12px;
  padding: 5px 0;
}
table {
  font-size: 13px;
}
th {
  font-size: 12px;
}
.page-heading p {
  font-size: 13px;
}
.stat > span {
  font-size: 13px;
}
.badge {
  font-size: 11px;
}
.link-url {
  font-size: 12px;
}
.date-sub {
  font-size: 12px;
}
.link-owner {
  font-size: 12px;
}
.panel-foot {
  font-size: 11px;
}
.form-error {
  font-size: 13px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
