@font-face {
  font-family: "Space Grotesk";
  src: url("/static/8e085aa438094f11487a836652edd5c054fa6a96f63fc7c282105ee3a4b08c07.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.5;
  background: #0f0f0f;
  color: #e7e7e7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --chat-item-bg: #161616;
  --chat-item-hover-bg: #222222;
  --icon-chat: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2714%27%20height%3D%2714%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27currentColor%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2015a2%202%200%200%201-2%202H7l-4%204V5a2%202%200%200%201%202-2h14a2%202%200%200%201%202%202z%27/%3E%3C/svg%3E");
  --icon-wrench: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2712%27%20height%3D%2712%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27currentColor%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14.7%206.3a1%201%200%200%200%200%201.4l1.6%201.6a1%201%200%200%200%201.4%200l3.77-3.77a6%206%200%200%201-7.94%207.94l-6.91%206.91a2.12%202.12%200%200%201-3-3l6.91-6.91a6%206%200%200%201%207.94-7.94l-3.76%203.76z%27/%3E%3C/svg%3E");
}

body {
  margin: 0;
  background-color: #111111;
  color: #e7e7e7;
  overflow: hidden;
}

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

* {
  margin: 0;
  padding: 0;
  scrollbar-color: #c0c0c0 transparent;
}

textarea,
button,
input {
  font-family: inherit;
  font-size: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.app-layout {
  display: flex;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.chat-main {
  flex: 1;
  display: flex;
  justify-content: center;
  background: #111111;
  min-width: 0;
  min-height: 0;
  order: 2;
}

.chat-wrapper {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  width: 100%;
  background: #1a1a1a;
  min-height: 0;
}

.messages-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column-reverse;
}

.messages-container {
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 1.5rem;
  scroll-behavior: smooth;
}


.message-row {
  display: flex;
  width: 100%;
}

.message-row.user {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 80%;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  position: relative;
  line-height: 1.5;
}

.message-row.user .message-bubble {
  background: #f5c542;
  color: #1a1a1a;
  border-bottom-right-radius: 0.25rem;
}

.message-row.assistant .message-bubble {
  background: #2a2a2a;
  color: #e7e7e7;
  border-bottom-left-radius: 0.25rem;
}

.message-row.user .message-bubble::before {
  content: "user";
}

.message-row.assistant .message-bubble::before {
  content: "assistant";
}

.message-row.user .message-bubble::before,
.message-row.assistant .message-bubble::before {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 0.35rem;
  padding-right: 2.6rem;
}

.message-content {
  word-break: break-word;
  white-space: pre-wrap;
}

.message-content h1,
.message-content h2,
.message-content h3,
.message-content h4,
.message-content h5,
.message-content h6 {
  margin: 0.35rem 0;
  line-height: 1.25;
}

.message-content h1 { font-size: 1.35rem; }
.message-content h2 { font-size: 1.2rem; }
.message-content h3 { font-size: 1.08rem; }
.message-content h4 { font-size: 1rem; }
.message-content h5 { font-size: 0.95rem; }
.message-content h6 { font-size: 0.9rem; opacity: 0.95; }

.message-bubble[data-status]::after {
  content: attr(data-status);
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  opacity: 0.98;
  animation: status-glow 2.1s ease-in-out infinite;
}

.message-row.user .message-bubble[data-status]::after {
  color: #fff;
}

.message-row.assistant .message-bubble[data-status]::after {
  color: #fff;
}

@keyframes status-glow {
  0% {
    text-shadow:
      0 0 0 rgba(255, 255, 255, 0.10),
      0 0 14px rgba(255, 195, 75, 0.13),
      0 0 28px rgba(255, 195, 75, 0.08),
      0 0 40px rgba(255, 130, 210, 0.05);
  }
  33% {
    text-shadow:
      0 0 0 rgba(255, 255, 255, 0.12),
      0 0 16px rgba(74, 222, 255, 0.15),
      0 0 30px rgba(74, 222, 255, 0.09),
      0 0 44px rgba(106, 193, 255, 0.06);
  }
  66% {
    text-shadow:
      0 0 0 rgba(255, 255, 255, 0.13),
      0 0 16px rgba(168, 135, 255, 0.15),
      0 0 30px rgba(168, 135, 255, 0.09),
      0 0 44px rgba(126, 255, 227, 0.06);
  }
  100% {
    text-shadow:
      0 0 0 rgba(255, 255, 255, 0.10),
      0 0 14px rgba(255, 195, 75, 0.13),
      0 0 28px rgba(255, 195, 75, 0.08),
      0 0 40px rgba(255, 130, 210, 0.05);
  }
}


.tool-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tool-toggle-label {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.45rem;
  background: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-radius: 0.4rem;
  color: #c0c0c0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
}

.tool-toggle-label::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  mask: var(--icon-wrench) no-repeat center / contain;
  -webkit-mask: var(--icon-wrench) no-repeat center / contain;
}

.tool-toggle-label:hover {
  background: #262626;
  border-color: #4a4a4a;
  color: #f5c542;
}

.tool-toggle:checked ~ .tool-toggle-label {
  background: #2a2a2a;
  border-color: #f5c542;
  color: #f5c542;
}

.tool-toggle:checked ~ .message-content .tool-detail {
  display: block;
}

.tool-detail {
  display: none;
}

.tool-toggle-count {
  font-weight: 700;
  font-size: 0.7rem;
}

.tool-call,
.tool-result {
  margin: 0.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.4rem;
  border: 1px solid #3a3a3a;
  overflow: hidden;
  max-width: 100%;
}

.tool-result {
  background: #1c1c1c;
  border-color: #2a2a2a;
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: #2a2a2a;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c0c0c0;
  border-bottom: 1px solid #1c1c1c;
}

.tool-header::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  mask: var(--icon-wrench) no-repeat center / contain;
  -webkit-mask: var(--icon-wrench) no-repeat center / contain;
}

.tool-args {
  padding: 0.6rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.85rem;
  margin: 0;
  color: #f5c542;
  background: #1c1c1c;
  overflow-x: auto;
  max-width: 100%;
}

.tool-sql-query {
  color: #ffd96a;
}

.result-header {
  padding: 0.3rem 0.6rem;
  background: #2a2a2a;
  font-size: 0.75rem;
  color: #9a9a9a;
  border-bottom: 1px solid #1c1c1c;
}

.result-content {
  padding: 0.6rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  margin: 0;
  color: #d0d0d0;
  max-height: 200px;
  overflow: auto;
  max-width: 100%;
}

.result-table-wrap {
  width: 100%;
  overflow: auto;
  max-height: 280px;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.78rem;
  color: #d8d8d8;
}

.result-table th,
.result-table td {
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid #2a2a2a;
  text-align: left;
  white-space: nowrap;
}

.result-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #232323;
  color: #b9b9b9;
  font-weight: 700;
}

.result-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.result-empty {
  padding: 0.6rem;
  font-size: 0.8rem;
  color: #9f9f9f;
}

.empty-state {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  gap: 0.75rem;
  color: #9a9a9a;
  text-align: center;
}

.empty-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e7e7e7;
}

.empty-divider {
  width: 160px;
  height: 1px;
  background: #2a2a2a;
  opacity: 0.7;
}

.empty-state p {
  margin: 0;
  color: #7f7f7f;
  font-size: 0.95rem;
}

.logo {
  display: inline-block;
  vertical-align: -0.1em;
}

.input-area {
  padding: 1.5rem 2rem;
  background: #1f1f1f;
  border-top: 1px solid #2a2a2a;
}

.input-container {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  background: #262626;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #3a3a3a;
  transition: border-color 0.2s;
}

.model-selector {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.model-selector select {
  background: #1f1f1f;
  border: 1px solid #3a3a3a;
  color: #e7e7e7;
  border-radius: 0.5rem;
  padding: 0.35rem 0.5rem;
}

.input-container:focus-within {
  border-color: #f5c542;
}

.input-container textarea {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  resize: none;
  max-height: 200px;
}

.input-container textarea:focus {
  outline: none;
}

.input-container button {
  background: #f5c542;
  color: #1a1a1a;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.input-container button:hover {
  background: #e9ad2f;
  transform: translateY(-1px);
}

.settings-main {
  align-items: stretch;
  background: #1f1f1f;
  min-height: 0;
}

.settings-shell {
  width: 100%;
  height: 100%;
  padding: 1.5rem 2rem;
  overflow-y: auto;
}

.settings-topbar {
  margin: 0 0 1rem;
  padding: 0.2rem 0;
}

.settings-topbar h1 {
  font-size: 1.6rem;
  margin: 0;
}

.settings-subtitle {
  margin-top: 0.45rem;
  color: #a6a6a6;
}

.settings-content {
  margin: 0;
  border-top: 1px solid #323232;
  padding-top: 0.2rem;
}

.settings-section {
  padding: 0.85rem 0.1rem;
}

.settings-divider {
  border: 0;
  border-top: 1px solid #323232;
  margin: 0;
}

.settings-section h2 {
  margin: 0;
  font-size: 1.15rem;
}

.settings-section h3 {
  margin: 1rem 0 0.15rem;
  font-size: 0.98rem;
  font-weight: 650;
  color: #d8d8d8;
}

.settings-section p {
  margin: 0.35rem 0 0;
  color: #b0b0b0;
  font-size: 0.93rem;
}

.settings-form {
  margin-top: 0.7rem;
}

.settings-section .input-group label {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #d0d0d0;
}

.settings-section .input-group input {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  color: #efefef;
  background: #242424;
  border: 1px solid #3a3a3a;
  border-radius: 0.5rem;
  padding: 0.62rem 0.72rem;
  max-width: 10rem;
  appearance: none;
  -webkit-appearance: none;
}

.settings-section .input-group input::placeholder {
  color: #9a9a9a;
}

.settings-section .input-group input:focus {
  outline: none;
  border-color: #f5c542;
  box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.2);
}

.credentials-form .input-group input {
  max-width: 22rem;
}

.settings-save-btn {
  margin-top: 0.8rem;
  min-width: 180px;
  height: 2.6rem;
  border-radius: 0.6rem;
  font-weight: 700;
}

.secondary-btn {
  margin-top: 0.7rem;
  margin-right: 0.6rem;
  border: 1px solid #3a3a3a;
  background: #1f1f1f;
  color: #d4d4d4;
  border-radius: 0.6rem;
  height: 2.35rem;
  padding: 0 0.8rem;
  font-weight: 600;
}

.settings-content .message {
  margin: 0.8rem 0 0.9rem;
  border-radius: 0.5rem;
}

.secondary-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.menu-toggle {
  display: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  color: #c0c0c0;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  z-index: 20;
}

.sidebar-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle:hover {
  background: #2a2a2a;
  color: white;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
  border: none;
  cursor: pointer;
}

/* Sidebar Styles */
.sidebar {
  width: 260px;
  background: #161616;
  border-right: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  flex-shrink: 0;
  order: 1;
}

.new-chat-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid #2f2f2f;
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  text-decoration: none;
  order: 1;
}

.new-chat-btn:hover {
  background: #222222;
  border-color: #3a3a3a;
}

.chat-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-right: -0.75rem;
  padding-right: 0.75rem;
  order: 2;
}

.sidebar-footer {
  margin-top: auto;
  position: relative;
  order: 3;
}

.user-menu {
  position: relative;
}

.user-menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.user-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  color: #e7e7e7;
  cursor: pointer;
  transition: all 0.2s;
}

.user-trigger:hover {
  background: #252525;
  border-color: #3a3a3a;
}

.user-menu-toggle:checked + .user-trigger {
  background: #252525;
  border-color: #3a3a3a;
}

.user-menu-toggle:focus-visible + .user-trigger {
  outline: none;
  box-shadow: 0 0 0 2px rgba(245, 197, 66, 0.55);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5c542;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.user-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.user-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.user-plan {
  font-size: 0.8rem;
  color: #9a9a9a;
}

.user-menu-panel {
  display: none;
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  width: 100%;
  border: 1px solid #2f2f2f;
  border-radius: 0.75rem;
  background: #1b1b1b;
  padding: 0.35rem;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.user-menu-toggle:checked ~ .user-menu-panel {
  display: block;
}

.user-menu-panel form {
  margin: 0;
}

.user-menu-item {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #d9d9d9;
  text-align: left;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

.user-menu-item:hover {
  background: #262626;
}

.user-menu-item:disabled {
  color: #8f8f8f;
  cursor: not-allowed;
}

.user-menu-item:disabled:hover {
  background: transparent;
}

.user-menu-item.danger {
  color: #f87171;
}

.user-menu-item.danger:hover {
  background: rgba(248, 113, 113, 0.14);
}

.chat-list > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--chat-item-bg);
  border: none;
  border-radius: 0.5rem;
  color: #c0c0c0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-weight: 500;
  min-width: 0;
  overflow: clip;
  overflow-clip-margin: content-box;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.chat-list > a::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  mask: var(--icon-chat) no-repeat center / contain;
  -webkit-mask: var(--icon-chat) no-repeat center / contain;
}

.chat-list > a:hover {
  background: var(--chat-item-hover-bg);
  color: white;
}

.chat-list > a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(245, 197, 66, 0.6) inset;
}

.chat-list > a.active {
  background: var(--chat-item-hover-bg);
  color: white;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
  }

  .sidebar-overlay {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar-toggle:checked ~ .app-layout .sidebar {
    transform: translateX(0);
  }

  .sidebar-toggle:checked ~ .app-layout .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .messages-container {
    padding: 1rem;
  }

  .input-area {
    padding: 1rem;
  }

  .settings-shell {
    padding: 4.5rem 1rem 1rem;
  }

  .secondary-btn {
    width: 100%;
    margin-right: 0;
  }
}

body.auth-page {
  background: linear-gradient(135deg, #101010 0%, #1e1e1e 100%);
  overflow: auto;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid #2a2a2a;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.brand span {
  background: linear-gradient(90deg, #f5c542, #e9ad2f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 0;
  color: #b3b3b3;
  font-size: 0.95rem;
}

.message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.message.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.message.error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-container label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #c0c0c0;
}

.auth-container input {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #2d2d2d;
  background: #1f1f1f;
  color: white;
  font-size: 1rem;
  transition: all 0.2s;
}

.auth-container input:focus {
  outline: none;
  border-color: #f5c542;
  box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.25);
}

.auth-container input::placeholder {
  color: #5b5b5b;
}

.turnstile-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.turnstile-container {
  align-self: center;
}

.primary-btn {
  margin-top: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: linear-gradient(135deg, #f5c542, #e9ad2f);
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.primary-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(245, 197, 66, 0.45);
}

.auth-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.link-btn {
  background: none;
  border: none;
  color: #f5c542;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.link-btn:hover {
  color: #ffd46a;
  text-decoration: underline;
}
