*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: #1F2937;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
.dark body {
  color: #E5E7EB;
  background: #0F172A;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
  outline: none;
  border: none;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.hidden {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  color: #1F2937;
  background: #FFFFFF;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  outline: none;
  cursor: pointer;
}
input {
  outline: none;
}
/* 布局容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* 弹性布局 */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 隐藏 */
.hidden {
  display: none !important;
}
/* 主题色按钮 */
.btn-primary {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #0D9488;
  color: #FFFFFF;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #0F766E;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  box-sizing: border-box;
}
.dark #navbar {
  background: rgba(17, 24, 39, 0.98);
  border-bottom-color: #374151;
}
.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #0D9488;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #0D9488;
  white-space: nowrap;
}
.dark .logo-text {
  color: #fff;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-item {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
}
.dark .nav-item {
  color: #e5e7eb;
}
.nav-item:hover {
  color: #0D9488;
}
.register-btn {
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid #0D9488;
  color: #0D9488;
  background: transparent;
  font-size: 14px;
}
.register-btn:hover {
  background: #0D9488;
  color: #fff;
}
.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-left: 8px;
}
.theme-btn:hover {
  background: #f3f4f6;
}
.dark .theme-btn:hover {
  background: #374151;
}
.theme-icon {
  font-size: 16px !important;
}
.moon-icon {
  color: #374151 !important;
  display: inline-block !important;
}
.dark .moon-icon {
  color: #e5e7eb !important;
  display: none !important;
}
.sun-icon {
  color: #fbbf24 !important;
  display: none !important;
}
.dark .sun-icon {
  display: inline-block !important;
}
.mobile-menu-btn {
  display: none;
  font-size: 24px;
  background: transparent;
  border: none;
  color: #374151;
  flex-shrink: 0;
}
.dark .mobile-menu-btn {
  color: #fff;
}
.mobile-menu {
  display: none;
  padding: 16px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.dark .mobile-menu {
  background: #111827;
  border-top-color: #374151;
}
.mobile-menu.show {
  display: block;
}
.mobile-nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-links a {
  font-size: 16px;
  color: #374151;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}
.dark .mobile-nav-links a {
  color: #e5e7eb;
  border-bottom-color: #374151;
}
.mobile-btns-group {
  display: flex;
  gap: 12px;
  width: 100%;
}
.mobile-login-btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  color: #374151;
  font-size: 14px;
}
.dark .mobile-login-btn {
  border-color: #4b5563;
  color: #e5e7eb;
}
.mobile-register-btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  background: #0D9488;
  color: #fff;
  font-size: 14px;
}
.user-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 0;
}
.user-phone-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}
.dark .user-phone-label {
  color: #e5e7eb;
}
.user-arrow {
  font-size: 12px;
  color: #6B7280;
  transition: transform 0.2s ease;
}
.dark .user-arrow {
  color: #9CA3AF;
}
.user-dropdown-wrap.open .user-arrow {
  transform: rotate(180deg);
}
.user-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 120px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000;
}
.dark .user-dropdown-menu {
  background: #1F2937;
  border-color: #374151;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.user-dropdown-wrap.open .user-dropdown-menu {
  display: block;
}
.logout-btn {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  text-align: center;
  transition: background 0.2s;
}
.logout-btn:hover {
  background: #F3F4F6;
  color: #EF4444;
}
.dark .logout-btn {
  color: #e5e7eb;
}
.dark .logout-btn:hover {
  background: #374151;
  color: #F87171;
}
.mobile-user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #f3f4f6;
}
.dark .mobile-user-info {
  border-top-color: #374151;
}
.mobile-user-phone {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.dark .mobile-user-phone {
  color: #e5e7eb;
}
.mobile-logout-btn {
  font-size: 13px;
  color: #EF4444;
  padding: 6px 12px;
  border: 1px solid #EF4444;
  border-radius: 6px;
  background: transparent;
}
.mobile-logout-btn:hover {
  background: #FEE2E2;
}
.dark .mobile-logout-btn {
  color: #F87171;
  border-color: #F87171;
}
.dark .mobile-logout-btn:hover {
  background: rgba(239, 68, 68, 0.1);
}
.mobile-theme-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: transparent;
  border: none;
  color: #374151;
  font-size: 14px;
}
.dark .mobile-theme-btn {
  color: #e5e7eb;
}
.mobile-theme-btn .theme-icon {
  font-size: 16px !important;
}
@media (max-width: 768px) {
  .nav-list {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-inner {
    height: 56px;
    padding: 0 12px;
  }
  .theme-btn {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 375px) {
  .logo-text {
    font-size: 16px;
  }
  .mobile-menu-btn {
    font-size: 20px;
  }
}

.footer {
  width: 100%;
  background-color: #111827;
  color: #d1d5db;
  padding: 50px 0 20px;
  box-sizing: border-box;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
}
.footer-grid {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .footer-grid {
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-col-brand {
  min-width: 220px;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .footer-col-brand {
    min-width: 100%;
    margin-bottom: 20px;
  }
}
.footer-col-brand .brand-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-col-brand .brand-wrapper .brand-icon {
  width: 32px;
  height: 32px;
  background-color: #3b82f6;
  border-radius: 4px;
  display: block;
}
.footer-col-brand .brand-wrapper .brand-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-col-brand .brand-wrapper .brand-text {
    font-size: 16px;
  }
}
.footer-col-brand .brand-desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #d1d5db;
}
@media (max-width: 768px) {
  .footer-col-brand .brand-desc {
    font-size: 13px;
  }
}
.footer-col-brand .social-links {
  display: flex;
  gap: 10px;
}
.footer-col-brand .social-links .social-link {
  color: #d1d5db;
  font-size: 16px;
  text-decoration: none;
}
.footer-col {
  min-width: 100px;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .footer-col {
    min-width: auto;
    flex: 1 1 0;
    text-align: center;
  }
}
.footer-col .col-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer-col .col-title {
    font-size: 15px;
  }
}
.footer-col .col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col .col-list li {
  margin-bottom: 8px;
}
.footer-col .col-list .col-link {
  color: #d1d5db;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col .col-list .col-link:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-col .col-list .col-link {
    font-size: 13px;
  }
}
.footer-copyright {
  border-top: 1px solid #374151;
  padding-top: 20px;
  font-size: 13px;
  color: #6b7280;
  text-align: left;
}
@media (max-width: 768px) {
  .footer-copyright {
    font-size: 12px;
    text-align: center;
  }
}

.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-mask.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  width: 90%;
  max-width: 460px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.dark .modal-content {
  background: #1f2937;
  color: #f3f4f6;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: #1F2937;
}
.dark .modal-title {
  color: #fff;
}
.modal-close {
  font-size: 20px;
  color: #9CA3AF;
  cursor: pointer;
}
.modal-close:hover {
  color: #EF4444;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-item label {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
.dark .form-item label {
  color: #e5e7eb;
}
.form-item input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 15px;
}
.form-item input:focus {
  border-color: #0D9488;
}
.dark .form-item input {
  background: #374151;
  border-color: #4b5563;
  color: #fff;
}
.form-submit {
  height: 46px;
  background: #0D9488;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-submit:hover {
  background: #0F766E;
}
.modal-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #4B5563;
}
.modal-footer a {
  color: #0D9488;
  cursor: pointer;
  font-weight: 500;
}
.dark .modal-footer {
  color: #d1d5db;
}
/* 登录弹框核心样式 - 强制生效 */
.login-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}
.login-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
}
.login-modal .modal-content {
  width: 90% !important;
  max-width: 460px !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding: 32px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  position: relative !important;
  box-sizing: border-box !important;
}
.dark .login-modal .modal-content {
  background: #1f2937 !important;
  color: #f3f4f6 !important;
}
.login-modal .modal-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 24px !important;
}
.login-modal .modal-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin: 0 !important;
}
.dark .login-modal .modal-title {
  color: #f9fafb !important;
}
.login-modal .modal-close {
  font-size: 20px !important;
  color: #9ca3af !important;
  cursor: pointer !important;
  transition: color 0.2s !important;
}
.login-modal .modal-close:hover {
  color: #ef4444 !important;
}
.login-modal .modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
.login-modal .form-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.login-modal .form-item label {
  font-size: 14px !important;
  color: #374151 !important;
  font-weight: 500 !important;
}
.dark .login-modal .form-item label {
  color: #e5e7eb !important;
}
.login-modal .form-item input {
  height: 44px !important;
  padding: 0 14px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
}
.login-modal .form-item input:focus {
  border-color: #0D9488 !important;
}
.dark .login-modal .form-item input {
  background: #374151 !important;
  border-color: #4b5563 !important;
  color: #fff !important;
}
.login-modal .form-submit {
  height: 46px !important;
  background: #0D9488 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.login-modal .form-submit:hover {
  background: #0F766E !important;
}
.login-modal .modal-footer {
  margin-top: 20px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: #4b5563 !important;
}
.login-modal .modal-footer a {
  color: #0D9488 !important;
  cursor: pointer !important;
  font-weight: 500 !important;
}
.login-modal .modal-footer a:hover {
  text-decoration: underline !important;
}
.dark .login-modal .modal-footer {
  color: #d1d5db !important;
}
/* 注册弹框核心样式 - 强制生效 */
.register-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}
.register-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
}
.register-modal .modal-content {
  width: 90% !important;
  max-width: 460px !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding: 32px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  position: relative !important;
  box-sizing: border-box !important;
}
.dark .register-modal .modal-content {
  background: #1f2937 !important;
  color: #f3f4f6 !important;
}
.register-modal .modal-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 24px !important;
}
.register-modal .modal-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin: 0 !important;
}
.dark .register-modal .modal-title {
  color: #f9fafb !important;
}
.register-modal .modal-close {
  font-size: 20px !important;
  color: #9ca3af !important;
  cursor: pointer !important;
  transition: color 0.2s !important;
}
.register-modal .modal-close:hover {
  color: #ef4444 !important;
}
.register-modal .modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
.register-modal .form-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.register-modal .form-item label {
  font-size: 14px !important;
  color: #374151 !important;
  font-weight: 500 !important;
}
.dark .register-modal .form-item label {
  color: #e5e7eb !important;
}
.register-modal .form-item input {
  height: 44px !important;
  padding: 0 14px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
}
.register-modal .form-item input:focus {
  border-color: #0D9488 !important;
}
.dark .register-modal .form-item input {
  background: #374151 !important;
  border-color: #4b5563 !important;
  color: #fff !important;
}
.register-modal .form-submit {
  height: 46px !important;
  background: #0D9488 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.register-modal .form-submit:hover {
  background: #0F766E !important;
}
.register-modal .captcha-item .captcha-input-wrap {
  position: relative !important;
}
.register-modal .captcha-input-wrap input {
  width: 100% !important;
  padding-right: 110px !important;
}
.register-modal .captcha-btn {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 28px !important;
  line-height: 28px !important;
  padding: 0 14px !important;
  border: 1px solid #0D9488 !important;
  border-radius: 14px !important;
  background: transparent !important;
  color: #0D9488 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}
.register-modal .captcha-btn:hover {
  background: #0D9488 !important;
  color: #fff !important;
}
.register-modal .captcha-btn.counting {
  border-color: #9CA3AF !important;
  color: #9CA3AF !important;
  cursor: not-allowed !important;
  background: transparent !important;
}
.dark .register-modal .captcha-btn {
  color: #0D9488 !important;
  border-color: #0D9488 !important;
}
.dark .register-modal .captcha-btn:hover {
  background: #0D9488 !important;
  color: #fff !important;
}
.dark .register-modal .captcha-btn.counting {
  color: #9CA3AF !important;
  border-color: #6B7280 !important;
  background: transparent !important;
}
.register-modal .modal-footer {
  margin-top: 20px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: #4b5563 !important;
}
.register-modal .modal-footer a {
  color: #0D9488 !important;
  cursor: pointer !important;
  font-weight: 500 !important;
}
.register-modal .modal-footer a:hover {
  text-decoration: underline !important;
}
.dark .register-modal .modal-footer {
  color: #d1d5db !important;
}
/* 忘记密码弹框核心样式 - 强制生效 */
.forgot-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}
.forgot-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
}
.forgot-modal .modal-content {
  width: 90% !important;
  max-width: 460px !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding: 32px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  position: relative !important;
  box-sizing: border-box !important;
}
.dark .forgot-modal .modal-content {
  background: #1f2937 !important;
  color: #f3f4f6 !important;
}
.forgot-modal .modal-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 24px !important;
}
.forgot-modal .modal-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin: 0 !important;
}
.dark .forgot-modal .modal-title {
  color: #f9fafb !important;
}
.forgot-modal .modal-close {
  font-size: 20px !important;
  color: #9ca3af !important;
  cursor: pointer !important;
  transition: color 0.2s !important;
}
.forgot-modal .modal-close:hover {
  color: #ef4444 !important;
}
.forgot-modal .modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
.forgot-modal .form-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.forgot-modal .form-item label {
  font-size: 14px !important;
  color: #374151 !important;
  font-weight: 500 !important;
}
.dark .forgot-modal .form-item label {
  color: #e5e7eb !important;
}
.forgot-modal .form-item input {
  height: 44px !important;
  padding: 0 14px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
}
.forgot-modal .form-item input:focus {
  border-color: #0D9488 !important;
}
.dark .forgot-modal .form-item input {
  background: #374151 !important;
  border-color: #4b5563 !important;
  color: #fff !important;
}
.forgot-modal .form-submit {
  height: 46px !important;
  background: #0D9488 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.forgot-modal .form-submit:hover {
  background: #0F766E !important;
}
.forgot-modal .captcha-item .captcha-input-wrap {
  position: relative !important;
}
.forgot-modal .captcha-input-wrap input {
  width: 100% !important;
  padding-right: 110px !important;
}
.forgot-modal .captcha-btn {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 28px !important;
  line-height: 28px !important;
  padding: 0 14px !important;
  border: 1px solid #0D9488 !important;
  border-radius: 14px !important;
  background: transparent !important;
  color: #0D9488 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}
.forgot-modal .captcha-btn:hover {
  background: #0D9488 !important;
  color: #fff !important;
}
.forgot-modal .captcha-btn.counting {
  border-color: #9CA3AF !important;
  color: #9CA3AF !important;
  cursor: not-allowed !important;
  background: transparent !important;
}
.dark .forgot-modal .captcha-btn {
  color: #0D9488 !important;
  border-color: #0D9488 !important;
}
.dark .forgot-modal .captcha-btn:hover {
  background: #0D9488 !important;
  color: #fff !important;
}
.dark .forgot-modal .captcha-btn.counting {
  color: #9CA3AF !important;
  border-color: #6B7280 !important;
  background: transparent !important;
}
.forgot-modal .modal-footer {
  margin-top: 20px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: #4b5563 !important;
}
.forgot-modal .modal-footer a {
  color: #0D9488 !important;
  cursor: pointer !important;
  font-weight: 500 !important;
}
.forgot-modal .modal-footer a:hover {
  text-decoration: underline !important;
}
.dark .forgot-modal .modal-footer {
  color: #d1d5db !important;
}

