/* 登录 / 注册 / 找回密码 共用 */
.auth-section {
  padding: 60px 0 80px;
  min-height: 71vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-box {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.auth-tabs a {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
}

.auth-tabs a:hover {
  color: #333;
}

.auth-tabs a.active {
  color: #0066cc;
  border-bottom: 2px solid #0066cc;
  padding-bottom: 4px;
}

.auth-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
}

.auth-desc {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 24px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.auth-form .form-control:focus {
  outline: none;
  border-color: #0066cc;
}

.auth-form .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.auth-form .form-check input {
  margin: 0;
}

.auth-form .auth-link {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
}

.auth-form .auth-link:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #0066cc;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
}

.auth-btn:hover {
  background: #0052a3;
}

.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #666;
}

.auth-footer-text a {
  color: #0066cc;
  text-decoration: none;
}

.auth-footer-text a:hover {
  text-decoration: underline;
}

.auth-privacy {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.auth-privacy a {
  color: #0066cc;
  text-decoration: none;
}

/* 邮箱验证码相关样式 */
.email-verify-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.email-verify-wrapper .form-control {
  flex: 1;
  min-width: 0;
}

.btn-verify-code {
  flex-shrink: 0;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0066cc;
  background: #fff;
  border: 1px solid #0066cc;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-verify-code:hover {
  background: #0066cc;
  color: #fff;
}

.btn-verify-code:disabled {
  background: #f5f5f5;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
}

.btn-verify-code.countdown {
  background: #f5f5f5;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
}

/* 响应式样式 */
@media (max-width: 575px) {
  .email-verify-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-verify-code {
    width: 100%;
  }
}


