:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-2: #f9f9fb;
  --text: #1d1d1f;
  --secondary: #6e6e73;
  --tertiary: #8e8e93;
  --line: #d2d2d7;
  --line-soft: #e8e8ed;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-soft: #e8f2ff;
  --green: #248a3d;
  --green-soft: #e8f7ec;
  --orange: #c45500;
  --orange-soft: #fff3e6;
  --red: #d70015;
  --red-soft: #fff0f1;
  --sidebar-width: 248px;
  --topbar-height: 76px;
  --radius: 8px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang TC", "Noto Sans TC", "Helvetica Neue", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.loading-view {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: var(--surface);
}

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--line-soft);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.brand-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--text);
  color: var(--surface);
}

.brand-symbol.small {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.brand-symbol svg {
  width: 26px;
  height: 26px;
}

.brand-symbol.small svg {
  width: 20px;
  height: 20px;
}

.auth-view {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 41%) 1fr;
  background: var(--surface);
}

.auth-panel {
  min-height: 100vh;
  padding: clamp(32px, 6vh, 72px) clamp(34px, 6vw, 88px);
  display: flex;
  flex-direction: column;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-brand strong,
.sidebar-brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.auth-brand span,
.sidebar-brand span {
  display: block;
  margin-top: 3px;
  color: var(--secondary);
  font-size: 13px;
}

.auth-form-wrap {
  width: min(100%, 430px);
  margin: auto 0;
  padding: 48px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}

.auth-form-wrap h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 680;
}

.auth-copy {
  margin: 14px 0 30px;
  color: var(--secondary);
  font-size: 16px;
}

.form-stack {
  display: grid;
  gap: 17px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 560;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.14);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.primary-button,
.secondary-button,
.danger-button,
.text-button,
.icon-button {
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 620;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.primary-button {
  min-height: 44px;
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
}

.primary-button:hover {
  background: var(--blue-hover);
}

.primary-button:active,
.secondary-button:active,
.danger-button:active {
  transform: scale(0.985);
}

.primary-button.wide {
  width: 100%;
  margin-top: 4px;
}

.primary-button.compact {
  min-height: 38px;
  padding: 8px 13px;
}

.primary-button.compact svg {
  width: 17px;
  height: 17px;
}

.secondary-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.secondary-button:hover {
  background: var(--surface-2);
}

.danger-button {
  min-height: 40px;
  padding: 8px 14px;
  background: var(--red);
  color: #fff;
}

.text-button {
  min-height: 34px;
  padding: 6px 8px;
  background: transparent;
  color: var(--blue);
}

.icon-button {
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  color: var(--secondary);
}

.icon-button:hover {
  background: var(--surface-2);
  color: var(--text);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.form-message {
  width: min(100%, 430px);
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: #0059b2;
  font-size: 14px;
}

.form-message.error {
  background: var(--red-soft);
  color: var(--red);
}

.auth-foot {
  margin: auto 0 0;
  color: var(--tertiary);
  font-size: 12px;
}

.auth-image {
  min-width: 0;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.auth-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
}

.app-view {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  padding: 20px 14px 16px;
  border-right: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.96);
}

.sidebar-brand {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 8px;
}

.sidebar-close {
  margin-left: auto;
}

.sidebar-nav {
  display: grid;
  gap: 5px;
  margin-top: 26px;
}

.nav-button {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--secondary);
  text-align: left;
  font-weight: 560;
}

.nav-button:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-button.active {
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 650;
}

.nav-button svg {
  width: 19px;
  height: 19px;
}

.sidebar-footer {
  margin-top: auto;
  padding: 14px 6px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.sidebar-user {
  min-width: 0;
  flex: 1;
}

.sidebar-user strong,
.sidebar-user span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sidebar-user strong {
  font-size: 13px;
}

.sidebar-user span {
  color: var(--secondary);
  font-size: 11px;
}

.main-shell {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--topbar-height);
  padding: 0 clamp(20px, 3.5vw, 48px);
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(245, 245, 247, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-heading {
  min-width: 0;
}

.page-heading span {
  display: block;
  color: var(--secondary);
  font-size: 11px;
  line-height: 1.2;
}

.page-heading h1 {
  margin: 3px 0 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 680;
}

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

.sync-status {
  min-width: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.sync-status svg {
  width: 16px;
  height: 16px;
}

.sync-status.saving {
  color: var(--orange);
}

.sync-status.error {
  color: var(--red);
}

.content {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 30px clamp(20px, 3.5vw, 48px) 64px;
  outline: none;
}

.page-intro {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.page-intro h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 680;
}

.page-intro p {
  margin: 8px 0 0;
  color: var(--secondary);
  font-size: 15px;
}

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

.metric-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--secondary);
  font-size: 13px;
}

.metric-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
}

.metric-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.metric-icon.orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.metric-icon.red {
  background: var(--red-soft);
  color: var(--red);
}

.metric-icon svg {
  width: 16px;
  height: 16px;
}

.metric-value {
  margin-top: 14px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.metric-note {
  margin-top: 8px;
  color: var(--tertiary);
  font-size: 12px;
}

.dashboard-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 16px;
}

.section-panel {
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.panel-header {
  min-height: 62px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 660;
}

.panel-header p {
  margin: 3px 0 0;
  color: var(--secondary);
  font-size: 12px;
}

.chart-wrap {
  position: relative;
  min-height: 320px;
  padding: 18px;
}

.chart-wrap canvas {
  width: 100% !important;
  height: 280px !important;
}

.portfolio-visual {
  min-height: 238px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg);
}

.portfolio-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.portfolio-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.portfolio-caption strong {
  display: block;
  font-size: 17px;
}

.portfolio-caption span {
  display: block;
  margin-top: 3px;
  color: var(--secondary);
  font-size: 12px;
}

.action-list {
  display: grid;
}

.action-row {
  min-height: 62px;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
}

.action-row:first-child {
  border-top: 0;
}

.action-dot {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
}

.action-dot.red {
  background: var(--red-soft);
  color: var(--red);
}

.action-dot svg {
  width: 15px;
  height: 15px;
}

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

.action-row strong {
  font-size: 14px;
}

.action-row span {
  margin-top: 2px;
  color: var(--secondary);
  font-size: 12px;
}

.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius);
  background: #e9e9ed;
}

.tab-button {
  min-width: 98px;
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 620;
}

.tab-button.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.toolbar {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field {
  width: min(100%, 320px);
  position: relative;
}

.search-field svg {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 17px;
  height: 17px;
  color: var(--tertiary);
}

.search-field input {
  padding-left: 38px;
  background: var(--surface);
}

.toolbar select {
  width: auto;
  min-width: 140px;
}

.table-panel {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
}

.data-table th {
  height: 46px;
  background: var(--surface-2);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 650;
}

.data-table td {
  color: var(--text);
  font-size: 14px;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:hover {
  background: #fbfbfd;
}

.data-table .cell-title {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 650;
}

.data-table .cell-subtitle {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--secondary);
  font-size: 12px;
}

.table-actions {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.table-actions .icon-button {
  width: 32px;
  height: 32px;
}

.table-actions svg {
  width: 16px;
  height: 16px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 13px;
  background: var(--surface-2);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status.green {
  background: var(--green-soft);
  color: var(--green);
}

.status.orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.status.red {
  background: var(--red-soft);
  color: var(--red);
}

.empty-state {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 50px 20px;
  text-align: center;
}

.empty-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--secondary);
}

.empty-state h3 {
  margin: 4px 0 0;
  font-size: 17px;
}

.empty-state p {
  margin: 0;
  color: var(--secondary);
  font-size: 13px;
}

.reports-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 16px;
}

.decision-list {
  display: grid;
}

.decision-item {
  padding: 18px;
  border-top: 1px solid var(--line-soft);
}

.decision-item:first-child {
  border-top: 0;
}

.decision-item .decision-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.decision-item h4 {
  margin: 9px 0 5px;
  font-size: 16px;
}

.decision-item p {
  margin: 0;
  color: var(--secondary);
  font-size: 13px;
}

.settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: start;
}

.settings-section {
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.settings-section + .settings-section {
  margin-top: 16px;
}

.settings-section h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.settings-section > p {
  margin: 0 0 20px;
  color: var(--secondary);
  font-size: 13px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.audit-list {
  display: grid;
}

.audit-item {
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
}

.audit-item:first-child {
  border-top: 0;
}

.audit-item strong,
.audit-item span {
  display: block;
}

.audit-item strong {
  font-size: 13px;
}

.audit-item span {
  margin-top: 3px;
  color: var(--secondary);
  font-size: 11px;
}

.modal {
  width: min(92vw, 620px);
  max-height: min(90vh, 760px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(4px);
}

.modal-frame {
  max-height: min(90vh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: var(--surface);
}

.modal-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.modal-header .eyebrow {
  margin-bottom: 3px;
}

.modal-header h2 {
  margin: 0;
  font-size: 22px;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
}

.modal-body .form-message {
  width: 100%;
  margin: 18px 0 0;
}

.modal-footer {
  min-height: 70px;
  padding: 14px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  background: var(--surface-2);
}

.toast-region {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
}

.toast {
  width: min(360px, calc(100vw - 40px));
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 13px;
  animation: toast-in 0.2s ease-out;
}

.toast.success svg {
  color: var(--green);
}

.toast.error svg {
  color: var(--red);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
}

.sidebar-overlay {
  display: none;
}

.mobile-only {
  display: none;
}

@media (max-width: 1180px) {
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-card:nth-child(4),
  .metric-card:nth-child(5) {
    grid-column: span 1;
  }

  .dashboard-grid,
  .reports-grid,
  .settings-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .mobile-only {
    display: inline-flex;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    box-shadow: var(--shadow);
  }

  .app-view.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(0, 0, 0, 0.28);
  }

  .app-view.sidebar-open .sidebar-overlay {
    display: block;
  }

  .main-shell {
    margin-left: 0;
  }

  .mobile-menu {
    margin-left: -8px;
  }

  .auth-view {
    grid-template-columns: 1fr;
  }

  .auth-image {
    display: none;
  }

  .auth-panel {
    width: min(100%, 560px);
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  :root {
    --topbar-height: 68px;
  }

  .topbar {
    padding: 0 14px;
  }

  .content {
    padding: 22px 14px 48px;
  }

  .sync-status span {
    display: none;
  }

  .sync-status {
    min-width: 30px;
  }

  .primary-button.compact span {
    display: none;
  }

  .primary-button.compact {
    width: 38px;
    padding: 0;
  }

  .page-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-intro h2 {
    font-size: 25px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card {
    min-height: 118px;
    padding: 15px;
  }

  .metric-grid .metric-card:first-child {
    grid-column: 1 / -1;
  }

  .metric-value {
    font-size: 24px;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field,
  .toolbar select {
    width: 100%;
  }

  .tabs {
    width: 100%;
  }

  .tab-button {
    min-width: 0;
    flex: 1;
    padding: 0 8px;
  }

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

  .data-table {
    min-width: 760px;
  }

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

  .form-grid .full {
    grid-column: auto;
  }

  .modal {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .modal-frame {
    max-height: calc(100vh - 24px);
  }

  .auth-panel {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
