/*.language-switcher-fixed {*/
/*    position: static; !* 不要 fixed *!*/
/*    background: transparent;*/
/*}*/
/*.language-switcher-fixed select {*/
/*    padding: 4px 8px;*/
/*    border: 1px solid #dfe3e8;*/
/*    border-radius: 6px;*/
/*    background-color: #f9fafb;*/
/*    font-size: 14px;*/
/*    color: #202223;*/
/*    cursor: pointer;*/
/*}*/
/*!* 给 disclosure 按钮添加旋转效果 *!*/
/*.disclosure-rotated .Polaris-Button__DisclosureIcon {*/
/*    transform: rotate(180deg);*/
/*    transition: transform 0.3s ease;*/
/*}*/
/* 按钮整体样式 */
.language-button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  transition: background-color 0.2s, color 0.2s;
}
/* hover/focus 高亮效果 */
.language-button:hover,
.language-button:focus,
.language-button.active {
  background-color: #f9fafb;
  /* 官方浅灰 hover 背景 */
}
/* disclosure 箭头旋转动画 */
.language-button.active .Polaris-Button__DisclosureIcon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
/* 旗帜样式 */
.language-flag {
  font-size: 16px;
}
/* 语言文字 */
.language-label {
  white-space: nowrap;
}
/* 下拉列表每一项的间距 */
.language-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.Polaris-TopBar {
  background-color: #ffffff !important;
  /* 白色背景 */
  color: #202223;
  /* Polaris 默认深灰文字色 */
  /*box-shadow: 0 1px 0 0 #e1e3e5; !* 可选：添加轻微底部阴影以区分内容区 *!*/
}
.Polaris-TopBar__SecondaryMenu {
  margin-right: 5px;
}

.auth-login-container {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.auth-login-wrapper {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-header h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.auth-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}
.auth-actions {
  margin-top: 2rem;
}
.auth-actions .Polaris-Button {
  font-size: 1rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.auth-actions .Polaris-Button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.auth-footer {
  margin-top: 1.5rem;
  text-align: center;
}
.auth-footer p {
  color: #999;
  font-size: 0.875rem;
  margin: 0;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .auth-login-container {
    padding: 10px;
  }
  .auth-login-wrapper {
    max-width: 100%;
  }
  .auth-header h2 {
    font-size: 1.5rem;
  }
}
/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Banner 样式优化 */
.Polaris-Banner {
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
/* TextField 样式优化 */
.Polaris-TextField .Polaris-TextField__Input {
  border-radius: 6px;
  transition: all 0.2s ease;
}
.Polaris-TextField .Polaris-TextField__Input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
/* Card 样式优化 */
.Polaris-Card {
  padding: 2rem;
  border: none;
  box-shadow: none;
}

