:root {
  color-scheme: dark;
  --text: #d1d5db;
  --muted: #9ca3af;
  --bg: #1a1a1a;
  --bg-accent: #232323;
  --card: #232323;
  --border: #2d2d2d;
  --link: #93c5fd;
  --link-hover: #bfdbfe;
  --accent: #60a5fa;
  --accent-soft: #1e293b;
  --accent-soft-hover: #334155;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 12px 20px -8px rgba(0, 0, 0, 0.5);
  --gold: #fbbf24;
  --silver: #94a3b8;
  --bronze: #a78bfa;
  --yes: #34d399;
  --no: #4b5563;
}

html[data-theme="light"] {
  color-scheme: light;
  --text: #1f2937;
  --muted: #4b5563;
  --bg: #f4f5f7;
  --bg-accent: #eef0f3;
  --card: #ffffff;
  --border: #e5e7eb;
  --link: #0f172a;
  --link-hover: #475569;
  --accent: #0f172a;
  --accent-soft: #f8fafc;
  --accent-soft-hover: #f1f5f9;
  --shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 12px 20px -8px rgba(0, 0, 0, 0.08);
  --gold: #0f172a;
  --silver: #475569;
  --bronze: #64748b;
  --yes: #0f172a;
  --no: #cbd5e1;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--link-hover);
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .wrap {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: center;
}

.logo::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.site-header .site-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.site-header .site-nav--main {
  justify-self: start;
}

.site-header .site-nav--auth {
  justify-self: end;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.15s ease;
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg-accent);
}

.nav-link.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

@media (max-width: 640px) {
  .header-bar {
    gap: 0.35rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .nav-link {
    padding: 0.4rem 0.55rem;
    font-size: 0.8rem;
  }

  .nav-user {
    max-width: 5.5rem;
    padding: 0.4rem 0.45rem;
    font-size: 0.75rem;
  }
}

/* Main Layout */
main.wrap {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
  background: var(--card);
  text-align: center;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
  padding: 1rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 65ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 color-mix(in srgb, var(--accent) 30%, transparent);
}

.btn-primary:hover {
  background: var(--link-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 color-mix(in srgb, var(--accent) 40%, transparent);
}

.btn-primary svg {
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--bg-accent);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Section Title */
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--text);
}

/* Ranking List */
.ranking-container {
  margin-bottom: 4rem;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.rank-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.rank-card-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rank-card-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.rank-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rank-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-accent);
  border-top: 1px dashed var(--border);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .rank-card-media {
    border-top: none;
    border-left: 1px dashed var(--border);
    padding: 1.5rem;
  }
}

.rank-card-media img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
  transition: transform 0.2s ease;
}

.rank-card:hover .rank-card-media img {
  transform: scale(1.02);
}

.rank-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}

.rank-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px dashed var(--border);
  gap: 1.25rem;
}

.rank-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-accent);
  color: var(--muted);
  font-weight: 800;
  font-size: 1.15rem;
}

.rank-card--gold .rank-badge-wrapper {
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  color: var(--gold);
}

.rank-card--silver .rank-badge-wrapper {
  background: color-mix(in srgb, var(--silver) 12%, transparent);
  color: var(--silver);
}

.rank-card--bronze .rank-badge-wrapper {
  background: color-mix(in srgb, var(--bronze) 12%, transparent);
  color: var(--bronze);
}

.rank-title-area {
  flex: 1;
}

.rank-software-name {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.rank-software-name a {
  color: var(--text);
}

.rank-software-name a:hover {
  color: var(--accent);
}

.rank-platforms {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.rank-score-area {
  display: flex;
  align-items: center;
}

.score-radial {
  display: flex;
  align-items: baseline;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
}

.score-number {
  font-size: 1.2rem;
}

.score-of {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 600;
}

.rank-body-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.rank-summary {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.rank-card-footer {
  display: flex;
  justify-content: flex-end;
}

.rank-review-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rank-review-link svg {
  transition: transform 0.2s ease;
}

.rank-review-link:hover svg {
  transform: translateX(3px);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 4rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-details[open] {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
  box-shadow: var(--shadow-md);
}

.faq-summary {
  padding: 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  flex: 1;
}

.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-content {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid transparent;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-content p {
  margin: 0;
}

/* Disclaimer Section */
.disclaimer-section {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.disclaimer-text {
  margin: 0;
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid var(--muted);
  border-right: 1.5px solid var(--muted);
  transform: rotate(45deg);
  opacity: 0.6;
}

.breadcrumb span[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

/* Compare Page & Table */
.page-header-simple {
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.table-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
  margin-bottom: 3rem;
  -webkit-overflow-scrolling: touch;
}

.compare-table-modern {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.compare-table-modern caption {
  display: none;
}

.compare-table-modern th,
.compare-table-modern td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.compare-table-modern thead th {
  background: var(--bg-accent);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border);
}

.col-software {
  min-width: 180px;
}

.col-criterion {
  text-align: center;
  min-width: 90px;
}

.row-software-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.row-software-name a {
  color: var(--text);
}

.row-software-name a:hover {
  color: var(--accent);
}

.cell-status {
  text-align: center;
}

.status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.status-icon--yes {
  background: color-mix(in srgb, var(--yes) 12%, transparent);
  color: var(--yes);
}

.status-icon--no {
  background: color-mix(in srgb, var(--no) 10%, transparent);
  color: var(--no);
}

.compare-table-modern tbody tr:last-child th,
.compare-table-modern tbody tr:last-child td {
  border-bottom: none;
}

.compare-table-modern tbody tr {
  transition: background-color 0.15s ease;
}

.compare-table-modern tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-soft) 30%, transparent);
}

.page-actions-bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Detail Page Layout */
.detail-article {
  margin-bottom: 3rem;
}

.detail-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.15;
}

.detail-score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1.5px solid color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  min-width: 80px;
}

.score-val {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.score-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  opacity: 0.8;
}

.detail-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 75ch;
}

.detail-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-accent);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.meta-pill svg {
  opacity: 0.8;
}

/* Detail Grid */
.detail-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1.6fr 1fr;
  }
}

.detail-main-content .prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.detail-main-content .prose p {
  margin: 0 0 1.25rem;
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 500px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pro-con-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pro-card {
  background: color-mix(in srgb, var(--yes) 3%, var(--card));
  border-top: 4px solid var(--yes);
}

.con-card {
  background: color-mix(in srgb, var(--muted) 3%, var(--card));
  border-top: 4px solid var(--muted);
}

.pro-con-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.pro-title {
  color: var(--yes);
}

.con-title {
  color: var(--muted);
}

.pro-con-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: none;
}

.pro-con-list li {
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 0.925rem;
  line-height: 1.5;
}

.pro-con-list li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  font-weight: bold;
}

.pro-card .pro-con-list li::before {
  color: var(--yes);
}

.con-card .pro-con-list li::before {
  color: var(--muted);
}

/* Sidebar Cards */
.detail-sidebar {
  display: grid;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.sidebar-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

/* Score Bars */
.score-bars-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.score-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.score-bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
}

.score-bar-label {
  color: var(--text);
}

.score-bar-value {
  color: var(--accent);
}

.score-bar-track {
  height: 8px;
  background: var(--bg-accent);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.5s ease;
}

/* Action Sidebar */
.sidebar-action-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

/* Detail Footer Navigation */
.detail-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border);
}

.nav-back-link {
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-divider {
  color: var(--border);
  user-select: none;
}

/* 404 Page */
.not-found-container {
  text-align: center;
  padding: 4rem 0;
}

.not-found-title {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 1rem;
}

.not-found-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.not-found-desc {
  color: var(--muted);
  margin: 0 0 2rem;
}

/* Detail Hero Image */
.detail-hero-image {
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.detail-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

/* Auth / Login */
.nav-user {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-link-auth {
  border: 1px solid var(--border);
}

.auth-section {
  max-width: 420px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.auth-title {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.auth-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.auth-alert {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-accent);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.auth-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease;
}

.auth-input:focus {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
}

.auth-submit {
  margin-top: 1.25rem;
  width: 100%;
  border: none;
}

.auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-footnote {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
}

.auth-footnote a {
  color: var(--muted);
  font-weight: 600;
}

.auth-footnote a:hover {
  color: var(--text);
}


