/* 登录页面修复样式 */

/* 修复输入框文字颜色 */
.input-wrapper input {
  color: #333 !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

/* 修复输入框图标颜色 */
.input-wrapper .input-icon {
  color: #666 !important;
  opacity: 0.7 !important;
}

.input-wrapper .input-icon i {
  color: #666 !important;
}

/* 修复密码切换按钮 */
.input-wrapper .icon-btn {
  background: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #666 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 100 !important;
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.input-wrapper .icon-btn:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
}

.input-wrapper .icon-btn i {
  color: #666 !important;
  font-size: 16px !important;
}

.input-wrapper .icon-btn:hover i {
  color: #333 !important;
}

/* 确保按钮可点击 */
#pwd-toggle {
  pointer-events: auto !important;
  cursor: pointer !important;
}

