/* Auth Modal Styles */
.Modal_overlay__auth {
  position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center;
}
.Modal_window__auth {
  background: #181e26; border-radius: 16px; padding: 32px 24px; min-width: 340px; box-shadow: 0 8px 32px #0008;
  display: flex; flex-direction: column; gap: 18px;
}
.Modal_title__auth {
  font-size: 1.5rem; color: #fff; font-weight: 600; margin-bottom: 8px; text-align: center;
}
.Modal_switch__auth {
  color: #93a8bd; font-size: 0.95rem; text-align: center;
}
.Modal_link__auth {
  color: #1a9fff; cursor: pointer; margin-left: 4px; text-decoration: underline;
}
.Header_authBtn__login, .Header_authBtn__register {
  background: none; font-weight: 500; cursor: pointer;
}
.Header_authBtn__login:hover, .Header_authBtn__register:hover {
   color: #fff;
} 